9 lines
303 B
Dart
9 lines
303 B
Dart
Future<int> main(List<String> args) async {
|
|
print("Starting BugVault Server...");
|
|
|
|
// Check for settings.dat, which should contain all basic information.
|
|
// Then check if any data exists. If not, create data hierarchy
|
|
|
|
print("Thank you for choosing BugVault! - Shutting down...");
|
|
return 0;
|
|
}
|