Migrated from GORM to bbolt for lightweight key-value storage, better aligning with project requirements. Updated repository methods to utilize bbolt's native APIs and removed dependencies associated with GORM.
8 lines
89 B
Go
8 lines
89 B
Go
package db
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrRecordNotFound = errors.New("record not found")
|
|
)
|