Gymboard/runner.d

22 lines
483 B
D
Raw Normal View History

#!/usr/bin/env rdmd
/**
* TODO: This module will eventually serve as some sort of setup script for
* if/when it becomes too complicated to just start the services. It should
* run as a CLI thing for entering commands to start/stop things.
*/
module runner;
import std.process;
import std.stdio;
import std.string;
import std.uni;
alias CommandFunction = void function(string[] args);
int main() {
while (true) {
string[] command = readln().split!isWhite;
}
}