You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package service
-
- import (
- "strings"
-
- "github.com/QuantumNous/new-api/constant"
- )
-
- func CoverTaskActionToModelName(platform constant.TaskPlatform, action string) string {
- return strings.ToLower(string(platform)) + "_" + strings.ToLower(action)
- }
|