8 lines
113 B
Go
8 lines
113 B
Go
package router
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
type DukcapilHandler interface {
|
|
FaceMatch(c *gin.Context)
|
|
}
|