OAuthApp: Add a main

This way we can easily run it
This commit is contained in:
Vishesh Handa
2019-10-11 16:17:27 +02:00
parent 17b13e9f00
commit 57b37399ef

View File

@ -83,3 +83,7 @@ class OAuthAppState extends State<OAuthApp> {
);
}
}
void main() async {
runApp(OAuthApp());
}