Using Plug-ins
Using Plug-ins
typedef Future AngelConfigurer(Angel app);import 'dart:io';
import 'package:angel3_framework/angel3_framework';
plugin(Angel app) async {
print("Do stuff here");
}
void main() async {
Angel app = Angel();
await app.configure(plugin);
await app.startServer();
}Execution Order
Next Up
Last updated