init.go 225 B

123456789101112
  1. package repository
  2. import (
  3. "git.beswell.com/gframe/application"
  4. "git.beswell.com/gframe/application/repository"
  5. )
  6. var Repository *repository.Repository
  7. func Init() {
  8. Repository = application.GetApp().NewRepository()
  9. }