2023-12-20 15:39:25 +00:00
|
|
|
package mysqlkindbox
|
2024-01-23 07:39:58 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (d DB) AddKindBox(ctx context.Context, kindBox entity.KindBox) (entity.KindBox, error) {
|
|
|
|
return entity.KindBox{}, nil
|
|
|
|
}
|