18 lines
378 B
Python
18 lines
378 B
Python
DEFAULT_CONFIG = {
|
|
'auth': {
|
|
'username': None,
|
|
'password': None,
|
|
'homeserver': None,
|
|
},
|
|
'command_prefix': '!export',
|
|
'export_interval': 3600,
|
|
'r2': {
|
|
'bucket_name': None,
|
|
'accountid': None,
|
|
'access_key_id': None,
|
|
'access_key_secret': None,
|
|
'pub_url': None,
|
|
'retention_hrs': 24,
|
|
}
|
|
}
|