Files
DredgePos/Installer/Router.fs
Josh 207edf0de3 Migration system added.
Install scripts for database schema and dummy data too.
2022-02-26 22:23:30 +10:00

10 lines
217 B
Forth

module DredgePos.Installer.Router
open DredgePos
open Saturn
open Giraffe
let router = router {
pipe_through Ajax.Router.pipeline
get "/" (warbler (fun _ -> htmlString (Controller.RunAllMigrations ())))
}