You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package services
-
- import mydb "gitlink.org.cn/cloudream/db"
-
- type Service struct {
- db *mydb.DB
- }
-
- func NewService(db *mydb.DB) *Service {
- return &Service{
- db: db,
- }
- }
|