feat: ent ORM, admin UI, client auth, Fyne GUI, Windows/MSI packaging

This commit is contained in:
kannn
2026-05-29 08:58:22 +00:00
Unverified
parent 8563a5fc74
commit a0a42a4966
81 changed files with 17144 additions and 89 deletions
+17
View File
@@ -0,0 +1,17 @@
package schema
import (
"entgo.io/ent"
"entgo.io/ent/schema/field"
)
type ServerConfig struct {
ent.Schema
}
func (ServerConfig) Fields() []ent.Field {
return []ent.Field{
field.String("key").Unique(),
field.String("value"),
}
}