feat: v0 — glpi-go client, mglpi CLI, mglpi-mcp, fake-GLPI test suite [#767]

https://projects.knownelement.com/issues/767#note-4191
This commit is contained in:
2026-09-04 08:41:25 -05:00
commit 5da1eee08f
26 changed files with 4956 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
// Command mglpi is the GLPI/CMDB CLI over the mopac-glpi-go library.
package main
import (
"os"
"git.knownelement.com/ukrrs/mopac-glpi-go/internal/cli"
)
func main() {
os.Exit(cli.Run(os.Args[1:], os.Stdout, os.Stderr))
}