19 lines
310 B
Go
19 lines
310 B
Go
package api
|
|
|
|
import (
|
|
"SciencesServer/app/basic/api"
|
|
"SciencesServer/app/enterprise/controller"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type Config struct{}
|
|
|
|
func (a *Config) Identity(c *gin.Context) {
|
|
data := controller.NewConfig().Identity()
|
|
api.APISuccess(data)
|
|
}
|
|
|
|
func (a *Config) Industry(c *gin.Context) {
|
|
|
|
}
|