mirror of
https://github.com/certimate-go/certimate.git
synced 2026-06-22 21:05:48 +08:00
13 lines
173 B
Go
13 lines
173 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/pocketbase/pocketbase"
|
|
)
|
|
|
|
func Serve(app *pocketbase.PocketBase) error {
|
|
return app.Start()
|
|
}
|