2021-09-29 16:25:56 +08:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2021-09-29 16:43:40 +08:00
|
|
|
"SciencesServer/app/basic/api"
|
2021-09-29 16:25:56 +08:00
|
|
|
"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)
|
|
|
|
}
|