mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-09 04:52:30 -04:00
14 lines
426 B
Python
14 lines
426 B
Python
from sessions.mastodon import session
|
|
|
|
class Session(session.Session):
|
|
# disable version check so Mastodon.py won't throw exceptions.
|
|
version_check_mode = "none"
|
|
name = "GoToSocial"
|
|
|
|
def get_lists(self):
|
|
""" Gets the lists that the user is subscribed to and stores them in the database. Returns None."""
|
|
self.db["lists"] = []
|
|
|
|
def get_muted_users(self):
|
|
self.db["muted_users"] = []
|