You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
12345678910111213 |
- package hdl
-
- import (
- "applet/app/operator/svc"
- "github.com/gin-gonic/gin"
- )
-
- func ProjectList(c *gin.Context) {
- svc.ProjectList(c)
- }
- func ProjectSelect(c *gin.Context) {
- svc.ProjectSelect(c)
- }
|