mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-25 16:29:49 -04:00
23 lines
624 B
C#
23 lines
624 B
C#
![]() |
namespace DynamicBible.DataPreparation;
|
|||
|
|
|||
|
internal class Program
|
|||
|
{
|
|||
|
private static void Main()
|
|||
|
{
|
|||
|
new BibleProcessor()
|
|||
|
.CreateText(
|
|||
|
Path.Combine(
|
|||
|
Environment.CurrentDirectory,
|
|||
|
"..",
|
|||
|
"..",
|
|||
|
"..",
|
|||
|
"Data",
|
|||
|
"kjv_plus"
|
|||
|
)
|
|||
|
);
|
|||
|
|
|||
|
// StepBibleProcessor.ProcessStep(
|
|||
|
// "/Users/walljm/projects/walljm/dynamicbible/data/stepbible/TAGNT Act-Rev - Translators Amalgamated Greek NT - STEPBible.org CC-BY.txt"
|
|||
|
// );
|
|||
|
}
|
|||
|
}
|