15
service/service_kyc/service.go
Normal file
15
service/service_kyc/service.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package service_kyc
|
||||
|
||||
type KycService interface {
|
||||
SessionKyc(*KycSessionPayload) *KycSessionResult
|
||||
QueryKyc(*KycQueryPayload) *KycQueryResult
|
||||
}
|
||||
|
||||
type KycServiceImpl struct {
|
||||
PassportId string `json:"passport_id"`
|
||||
PassportReaderSessionId int `json:"passport_reader_session_id"`
|
||||
}
|
||||
|
||||
func NewKycService() KycService {
|
||||
return &KycServiceImpl{}
|
||||
}
|
||||
Reference in New Issue
Block a user