15 lines
170 B
Go
15 lines
170 B
Go
|
|
package application
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/gin-gonic/gin"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Controller interface {
|
||
|
|
RegisterRoute()
|
||
|
|
}
|
||
|
|
|
||
|
|
func New() *gin.Engine {
|
||
|
|
app := gin.Default()
|
||
|
|
return app
|
||
|
|
}
|