-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
26 lines (23 loc) · 798 Bytes
/
Copy pathmain.go
File metadata and controls
26 lines (23 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// @title kansou API
// @version 1.0
// @description Personal anime/manga scoring tool with AniList integration.
// @contact.name kansou
// @license.name MIT
// @BasePath /
// kansou is a personal anime/manga scoring CLI and REST server.
// It fetches media metadata from AniList, guides an interactive scoring session,
// applies a weighted genre-adjusted formula, and publishes the final score.
//
// Usage:
//
// kansou score add "Frieren" # start a scoring session (includes publish prompt)
// kansou media find "Mushishi" # look up media without scoring
// kansou serve # start the REST server
package main
import (
"github.com/kondanta/kansou/cmd"
_ "github.com/kondanta/kansou/docs/swagger" // registers Swagger spec via init()
)
func main() {
cmd.Execute()
}