21 lines
408 B
Go
21 lines
408 B
Go
package aiService
|
|
|
|
import (
|
|
"fmt"
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
)
|
|
|
|
const (
|
|
aiCategoryKey = "aiCategory:%v"
|
|
aiTemplateKey = "aiTemplate:%v"
|
|
aiCategoryTemplateKey = "aiCategoryTemplate:%v"
|
|
)
|
|
|
|
func AiTemplateKey(id primitive.ObjectID) string {
|
|
return fmt.Sprintf(aiTemplateKey, id.Hex())
|
|
}
|
|
|
|
func AiCategoryKey(types int) string {
|
|
return fmt.Sprintf(aiCategoryKey, types)
|
|
}
|