Files
LazyPM/cmd/web/main.go
2026-02-28 22:17:55 +01:00

18 lines
300 B
Go

package main
import (
"context"
"fmt"
"os"
"github.com/LazyBachelor/LazyPM/internal/models"
"github.com/LazyBachelor/LazyPM/pkg/web"
)
func main() {
if err := web.New().Run(context.Background(), models.BaseConfig); err != nil {
fmt.Fprintf(os.Stderr, "Error: %v\n", err)
os.Exit(1)
}
}