fix: missing entry file
This commit is contained in:
@@ -25,6 +25,5 @@ Thumbs.db
|
|||||||
**/temp/
|
**/temp/
|
||||||
|
|
||||||
# Go spezifische Ignorierungen
|
# Go spezifische Ignorierungen
|
||||||
**/bin/
|
|
||||||
**/pkg/
|
**/pkg/
|
||||||
**/vendor/
|
**/vendor/
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
import 'package:backend_dart/infrastructure/config/config.dart';
|
||||||
|
import 'package:backend_dart/interfaces/http/server.dart';
|
||||||
|
|
||||||
|
void main() async {
|
||||||
|
final config = await Config.load();
|
||||||
|
final server = Server(config);
|
||||||
|
|
||||||
|
print('Starting ActaTempus server on port ${config.port}...');
|
||||||
|
await server.start();
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user