Files
pocket-id/backend/cmd/main.go

19 lines
252 B
Go
Raw Normal View History

2024-08-12 11:00:25 +02:00
package main
import (
"log"
"github.com/pocket-id/pocket-id/backend/internal/bootstrap"
2024-08-12 11:00:25 +02:00
)
// @title Pocket ID API
// @version 1.0
// @description.markdown
2024-08-12 11:00:25 +02:00
func main() {
err := bootstrap.Bootstrap()
if err != nil {
log.Fatal(err.Error())
}
2024-08-12 11:00:25 +02:00
}