提交 v1.3.0 beta
This commit is contained in:
15
server/api/branding.go
Normal file
15
server/api/branding.go
Normal file
@ -0,0 +1,15 @@
|
||||
package api
|
||||
|
||||
import (
|
||||
"next-terminal/server/branding"
|
||||
"next-terminal/server/common/maps"
|
||||
|
||||
"github.com/labstack/echo/v4"
|
||||
)
|
||||
|
||||
func Branding(c echo.Context) error {
|
||||
return Success(c, maps.Map{
|
||||
"name": branding.Name,
|
||||
"copyright": branding.Copyright,
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user