creating first structure of cinema backend server

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-11-16 00:01:14 +01:00
parent 92da4423b2
commit a5d9372806
15 changed files with 362 additions and 58 deletions

View File

@@ -0,0 +1,14 @@
import 'package:injectable/injectable.dart';
@injectable
class Version {
const Version();
String get appVersion => const String.fromEnvironment('APP_VERSION');
void printVersion() {
if (appVersion.isNotEmpty) {
print('App Version: $appVersion');
}
}
}