update: add RemoveNode

This commit is contained in:
Oarkflow
2025-06-20 20:27:31 +05:45
parent 95c49328f6
commit 4c39e27252
2 changed files with 84 additions and 2 deletions

View File

@@ -183,7 +183,7 @@ func main() {
panic(flow.Error)
}
app := fiber.New()
flowApp := app.Group("/test")
flow.Handlers(flowApp, "/test")
flowApp := app.Group("/")
flow.Handlers(flowApp, "/")
app.Listen(":8082")
}