added devcontainer with all tools for frontent (deno, nextjs) and backend (dart, go)

This commit is contained in:
2024-12-31 11:37:30 +00:00
parent b568907b65
commit e3a2b09ef4
24 changed files with 288 additions and 116 deletions
+8
View File
@@ -0,0 +1,8 @@
import 'package:backend_dart/backend_dart.dart';
import 'package:test/test.dart';
void main() {
test('calculate', () {
expect(calculate(), 42);
});
}