matrix-room-exporter/exporter/config.py

17 lines
349 B
Python
Raw Normal View History

2024-04-03 22:57:54 -06:00
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,
}
}