Files
llamactl/server/cmd/llamactl.go
2025-07-17 21:20:14 +02:00

19 lines
405 B
Go

package main
import (
llamactl "llamactl/pkg"
"net/http"
)
// @title Llama Server Control
// @version 1.0
// @description This is a control server for managing Llama Server instances.
// @license.name MIT License
// @license.url https://opensource.org/license/mit/
// @basePath /api/v1
func main() {
r := llamactl.SetupRouter()
// Start the server with the router
http.ListenAndServe(":8080", r)
}