2023-04-22 12:39:27 +00:00
|
|
|
|
package common
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
2024-01-28 11:38:58 +00:00
|
|
|
|
"github.com/songquanpeng/one-api/common/config"
|
2023-04-22 12:39:27 +00:00
|
|
|
|
)
|
|
|
|
|
|
2024-03-13 12:00:51 +00:00
|
|
|
|
func LogQuota(quota int64) string {
|
2024-01-21 15:21:42 +00:00
|
|
|
|
if config.DisplayInCurrencyEnabled {
|
|
|
|
|
return fmt.Sprintf("$%.6f 额度", float64(quota)/config.QuotaPerUnit)
|
2023-04-22 12:39:27 +00:00
|
|
|
|
} else {
|
2024-01-21 15:21:42 +00:00
|
|
|
|
return fmt.Sprintf("%d 点额度", quota)
|
2023-10-22 10:38:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|