15 lines
263 B
Go
15 lines
263 B
Go
![]() |
package api
|
||
|
|
||
|
import (
|
||
|
"SciencesServer/app/common/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)
|
||
|
}
|