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{} }