feat: tests (article)

This commit is contained in:
Florian Sylvain
2023-08-12 02:33:40 +02:00
parent 0466da2d4b
commit 46daadb8e4
7 changed files with 324 additions and 48 deletions
+11
View File
@@ -0,0 +1,11 @@
package main
import "GohCMS2/main/server"
func main() {
router := server.InitServer()
err := server.StartServer(router)
if err != nil {
panic(err)
}
}