mirror of https://github.com/go-gitea/gitea.git
26 lines
595 B
Go
26 lines
595 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package actions
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"code.gitea.io/gitea/modules/web"
|
|
"code.gitea.io/gitea/routers/api/actions/ping"
|
|
"code.gitea.io/gitea/routers/api/actions/runner"
|
|
)
|
|
|
|
func Routes(_ context.Context, prefix string) *web.Route {
|
|
m := web.NewRoute()
|
|
|
|
path, handler := ping.NewPingServiceHandler()
|
|
m.Post(path+"*", http.StripPrefix(prefix, handler).ServeHTTP)
|
|
|
|
path, handler = runner.NewRunnerServiceHandler()
|
|
m.Post(path+"*", http.StripPrefix(prefix, handler).ServeHTTP)
|
|
|
|
return m
|
|
}
|