pr-deployer/cmd/web.go

12 lines
177 B
Go
Raw Normal View History

2021-10-26 13:49:08 +05:30
package cmd
import (
"github.com/spf13/cobra"
"gitea.com/gitea/pr-deployer/routers"
)
func runWeb(cmd *cobra.Command, args []string) {
2021-11-01 10:53:41 +05:30
routers.Web(publicFS, templateFS)
2021-10-26 13:49:08 +05:30
}