(dir string)
| 69 | } |
| 70 | |
| 71 | func getDefaultDatabaseConfig(dir string) Database { |
| 72 | return Database{ |
| 73 | Debug: false, |
| 74 | DbBackend: SQLiteBackend, |
| 75 | SQLite: SQLite{ |
| 76 | DBFile: filepath.Join(dir, "garm.db"), |
| 77 | }, |
| 78 | Passphrase: EncryptionPassphrase, |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | func getDefaultProvidersConfig() []Provider { |
| 83 | return []Provider{} |
no outgoing calls
no test coverage detected