mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +00:00
15 lines
183 B
Go
15 lines
183 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/pocketbase/pocketbase"
|
|
)
|
|
|
|
func main() {
|
|
app := pocketbase.New()
|
|
|
|
if err := app.Start(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
} |