mirror of
https://github.com/MuXiu1997/traefik-github-oauth-plugin
synced 2025-12-17 18:31:27 +00:00
13 lines
300 B
Go
13 lines
300 B
Go
package main
|
|
|
|
import (
|
|
. "github.com/MuXiu1997/traefik-github-oauth-plugin/internal/app/traefik-github-oauth-server"
|
|
"github.com/MuXiu1997/traefik-github-oauth-plugin/internal/app/traefik-github-oauth-server/router"
|
|
)
|
|
|
|
func main() {
|
|
app := NewDefaultApp()
|
|
router.RegisterRoutes(app)
|
|
app.Run()
|
|
}
|