您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

16 行
368 B

  1. package common
  2. const (
  3. DatabaseTypeMySQL = "mysql"
  4. DatabaseTypeSQLite = "sqlite"
  5. DatabaseTypePostgreSQL = "postgres"
  6. )
  7. var UsingSQLite = false
  8. var UsingPostgreSQL = false
  9. var LogSqlType = DatabaseTypeSQLite // Default to SQLite for logging SQL queries
  10. var UsingMySQL = false
  11. var UsingClickHouse = false
  12. var SQLitePath = "one-api.db?_busy_timeout=30000"