mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-23 07:19:50 -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"
|
|
// );
|
|
}
|
|
} |