14 lines
235 B
D
14 lines
235 B
D
import snapd;
|
|
import commandr;
|
|
|
|
import core.stdc.stdlib : EXIT_SUCCESS;
|
|
|
|
private string programName = "snapd";
|
|
|
|
int main(string[] args)
|
|
{
|
|
auto argumets = new Program(programName, snapdVersion)
|
|
.parse(args);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|