12 lines
218 B
Go
12 lines
218 B
Go
package handler
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go-backend-template/internal/contract"
|
|
)
|
|
|
|
type DukcapilService interface {
|
|
FaceMatch(ctx context.Context, req *contract.FaceMatchRequest) (*contract.FaceMatchResponse, error)
|
|
}
|