mirror of
https://github.com/rancher/norman.git
synced 2025-06-23 22:18:34 +00:00
52 lines
897 B
Go
52 lines
897 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
|
|
"github.com/rancher/norman/generator"
|
|
"github.com/rancher/norman/server"
|
|
"github.com/rancher/norman/types"
|
|
)
|
|
|
|
type Foo struct {
|
|
types.Resource
|
|
Name string `json:"name"`
|
|
Foo string `json:"foo"`
|
|
SubThing Baz `json:"subThing"`
|
|
}
|
|
|
|
type Baz struct {
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
var (
|
|
version = types.APIVersion{
|
|
Version: "v1",
|
|
Group: "io.cattle.core.example",
|
|
Path: "/example/v1",
|
|
}
|
|
|
|
Schemas = types.NewSchemas()
|
|
)
|
|
|
|
func main() {
|
|
if _, err := Schemas.Import(&version, Foo{}); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
if err := generator.Generate("example_gen", Schemas); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
server, err := server.NewAPIServer(context.Background(), os.Getenv("KUBECONFIG"), Schemas)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
fmt.Println("Listening on 0.0.0.0:1234")
|
|
http.ListenAndServe("0.0.0.0:1234", server)
|
|
}
|