Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- package hdl
-
- import (
- "applet/app/store/svc"
- "github.com/gin-gonic/gin"
- )
-
- func ProjectList(c *gin.Context) {
- svc.ProjectList(c)
- }
- func ProjectSave(c *gin.Context) {
- svc.ProjectSave(c)
- }
- func ProjectDel(c *gin.Context) {
- svc.ProjectDel(c)
- }
- func AllProjectList(c *gin.Context) {
- svc.AllProjectList(c)
- }
- func AllProjectCate(c *gin.Context) {
- svc.AllProjectCate(c)
- }
|