update go mod, rename request_types to schema

This commit is contained in:
2025-02-06 22:24:23 +00:00
parent 1f700048a4
commit 67bd224116
3 changed files with 19 additions and 16 deletions

11
schema.go Normal file
View File

@@ -0,0 +1,11 @@
package main
type User struct {
Id string
Password string `form:"userpassword" binding:"required"`
CN string `form:"usercn" binding:"required"`
SN string `form:"usersn" binding:"required"`
Resources struct{}
Cluster struct{}
Templates struct{}
}