reorganize code
This commit is contained in:
20
core/model/response.go
Normal file
20
core/model/response.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package model
|
||||
|
||||
import "github.com/google/uuid"
|
||||
|
||||
type CreateNewCustomerResp struct {
|
||||
CustomerId uuid.UUID `json:"customer_id"`
|
||||
}
|
||||
|
||||
type GenerateSignupInterfaceResp struct {
|
||||
SessionId uuid.UUID `json:"session_id"`
|
||||
UserInterface []int `json:"user_interface"`
|
||||
}
|
||||
|
||||
type SetNKodeResp struct {
|
||||
UserInterface []int `json:"user_interface"`
|
||||
}
|
||||
|
||||
type GetLoginInterfaceResp struct {
|
||||
UserInterface []int `json:"user_interface"`
|
||||
}
|
||||
Reference in New Issue
Block a user