feat: import snippets from network (#510)

Fixes #507
This commit is contained in:
lollipopkit🏳️‍⚧️
2024-08-03 14:25:58 +08:00
committed by GitHub
parent 0e21755acb
commit b8e5418ff2
6 changed files with 76 additions and 14 deletions

View File

@@ -243,11 +243,4 @@ class AppRoutes {
static AppRoutes pve({Key? key, required ServerPrivateInfo spi}) {
return AppRoutes(PvePage(key: key, spi: spi), 'pve');
}
static AppRoutes kvEditor({Key? key, required Map<String, String> data}) {
return AppRoutes(
KvEditor(key: key, args: KvEditorArgs(data: data)),
'kv_editor',
);
}
}