mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-16 10:13:05 +03:00
19 lines
252 B
Go
19 lines
252 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/pocket-id/pocket-id/backend/internal/bootstrap"
|
|
)
|
|
|
|
// @title Pocket ID API
|
|
// @version 1.0
|
|
// @description.markdown
|
|
|
|
func main() {
|
|
err := bootstrap.Bootstrap()
|
|
if err != nil {
|
|
log.Fatal(err.Error())
|
|
}
|
|
}
|