init: adding pocketbase as a framework

This commit is contained in:
efim
2023-10-06 05:34:15 +00:00
commit 8c255ed812
9 changed files with 508 additions and 0 deletions

18
main.go Normal file
View File

@@ -0,0 +1,18 @@
package main
import (
"log"
// "os"
"github.com/pocketbase/pocketbase"
// "github.com/pocketbase/pocketbase/apis"
// "github.com/pocketbase/pocketbase/core"
)
func main() {
app := pocketbase.New()
if err := app.Start(); err != nil {
log.Fatal(err)
}
}