- initializated base structure of server - initializated base structure of client - initializated base structure of shared(lib for client and server)
7 lines
145 B
Dart
7 lines
145 B
Dart
// TODO: Put public facing types in this file.
|
|
|
|
/// Checks if you are awesome. Spoiler: you are.
|
|
class Awesome {
|
|
bool get isAwesome => true;
|
|
}
|