14 lines
286 B
Go
14 lines
286 B
Go
|
package front
|
||
|
|
||
|
import (
|
||
|
"github.com/gin-gonic/gin"
|
||
|
"qteam/app/http/controllers"
|
||
|
"qteam/app/services"
|
||
|
"qteam/config"
|
||
|
)
|
||
|
|
||
|
func ActivityDetail(c *gin.Context) {
|
||
|
code, activity := services.ActivityDetailService(config.GetConf().ActivityId)
|
||
|
controllers.HandCodeRes(c, activity, code)
|
||
|
}
|