user-manager-api/request_types.go

12 lines
278 B
Go
Raw Permalink Normal View History

2024-05-28 22:10:09 +00:00
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{}
}