26 lines
339 B
Go
26 lines
339 B
Go
package dao
|
|
|
|
import (
|
|
"atom/providers/config"
|
|
"context"
|
|
"errors"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Dao struct {
|
|
Conf *config.Config
|
|
DB *gorm.DB
|
|
}
|
|
|
|
func NewDao(db *gorm.DB) *Dao {
|
|
return &Dao{DB: db}
|
|
}
|
|
|
|
func (c *Dao) Release(ctx context.Context, a int, b string) error {
|
|
if a == 20 {
|
|
return errors.New("A cant't be 20 ")
|
|
}
|
|
return nil
|
|
}
|