16 lines
236 B
Go
16 lines
236 B
Go
|
|
package authReg
|
||
|
|
|
||
|
|
type RegRequest struct {
|
||
|
|
Name string
|
||
|
|
Description string
|
||
|
|
BaseCode int
|
||
|
|
EndCode int
|
||
|
|
SecretHash string
|
||
|
|
Status string
|
||
|
|
}
|
||
|
|
|
||
|
|
type RegResponse struct {
|
||
|
|
ServiceId int32
|
||
|
|
AlreadyRegistered bool
|
||
|
|
}
|