- Added for future use

This commit is contained in:
Tristan B. Velloza Kildaire 2023-01-11 11:34:55 +02:00
parent 5722fe0825
commit c51712e275
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
module compiler.docgen.core;
import compiler.parsing.core;
public final class DocumentGenerator
{
private Parser parser;
this(Parser parser)
{
this.parser = parser;
}
/**
* TODO: Later remove vibed even, and have maybe our own implementation
* just so we cna keep this more pure and less, well, whatever vibe-d is
* licensed under
*/
public void serve()
{
}
}