dukcapil/internal/handler/dukcapil_service.go
Aditya Siregar bc64eb20ea add dukcapil
2026-05-07 04:01:32 +07:00

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