comment-server/lbry_comment_server/__init__.py

9 lines
373 B
Python
Raw Normal View History

2019-05-20 05:56:20 -04:00
from lbry_comment_server.settings import config
from lbry_comment_server.database import obtain_connection, validate_input, get_claim_comments
from lbry_comment_server.database import get_comments_by_id, get_comment_ids, create_comment
schema = config['path']['schema']
database_fp = config['path']['dev']
backup = config['path']['backup']
anonymous = config['anonymous']
2019-05-20 05:08:04 -04:00