123456789101112131415161718 |
- // Copyright 2019 github.com. All rights reserved.
- // Use of this source code is governed by github.com.
- package v1
- import jsoniter "github.com/json-iterator/go"
- // 替换encoding/json包
- var json = jsoniter.ConfigCompatibleWithStandardLibrary
- // Controller
- type Controller struct {
- }
- // NewController return a new controller
- func NewController() *Controller {
- return &Controller{}
- }
|