index.go 148 B

1234567891011
  1. package controller
  2. import (
  3. "MeterService/core/api"
  4. "github.com/gin-gonic/gin"
  5. )
  6. func Index(c *gin.Context) {
  7. api.Ok2(c, "Web启动成功")
  8. }