gitea-github-proxy/api/router.go

12 lines
117 B
Go
Raw Normal View History

package api
import (
"github.com/gorilla/mux"
)
2024-02-11 19:59:07 +00:00
func NewRouter() *mux.Router {
r := mux.NewRouter()
return r
}