mirror of
https://github.com/coaidev/coai.git
synced 2025-05-19 04:50:14 +09:00
10 lines
141 B
Go
10 lines
141 B
Go
package globals
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func GetSubscriptionLimitFormat(t string, id int64) string {
|
|
return fmt.Sprintf("usage-%s:%d", t, id)
|
|
}
|