Make auth obligatory

This commit is contained in:
2024-04-19 13:19:44 +02:00
parent 350cf9d4c3
commit ea658ffe96
14 changed files with 474 additions and 119 deletions

View File

@ -0,0 +1,10 @@
class Environment {
final String name;
final List<String> apps;
final String provider;
Environment({
required this.name,
required this.apps,
required this.provider,
});
}