作者 tangxvhui

新增

  1 +package v2
  2 +
  3 +import (
  4 + "github.com/astaxie/beego"
  5 +)
  6 +
  7 +type BaseController struct {
  8 + beego.Controller
  9 +}
  10 +
  11 +func (base *BaseController) Prepare() {
  12 +
  13 +}
  14 +
  15 +func (base *BaseController) Finish() {
  16 +
  17 +}
  1 +package log
  2 +
  3 +import (
  4 + "github.com/astaxie/beego"
  5 +)
  6 +
  7 +func Warn(msg string) {
  8 + beego.Warn(msg)
  9 +}
  10 +
  11 +func Trace(msg string) {
  12 + beego.Trace(msg)
  13 +}
  14 +
  15 +func Debug(msg string) {
  16 + beego.Debug(msg)
  17 +}
  18 +
  19 +func Info(msg string) {
  20 + beego.Info(msg)
  21 +}
  22 +
  23 +func Error(msg string) {
  24 + beego.Error(msg)
  25 +}