| package common | |
| const ( | |
| DatabaseTypeMySQL = "mysql" | |
| DatabaseTypeSQLite = "sqlite" | |
| DatabaseTypePostgreSQL = "postgres" | |
| ) | |
| var UsingSQLite = false | |
| var UsingPostgreSQL = false | |
| var LogSqlType = DatabaseTypeSQLite // Default to SQLite for logging SQL queries | |
| var UsingMySQL = false | |
| var UsingClickHouse = false | |
| var SQLitePath = "one-api.db?_busy_timeout=30000" | |