17 lines
349 B
Python
17 lines
349 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,
|
||
|
}
|
||
|
}
|