mirror of
https://github.com/alopexc0de/Simple-Bookmarking-Service.git
synced 2024-12-22 14:22:39 +00:00
12 lines
223 B
Python
12 lines
223 B
Python
#!/usr/bin/env python3
|
|
|
|
"""
|
|
Creates a python module for the database
|
|
|
|
Usage: from db import Database
|
|
"""
|
|
|
|
from .db import Database
|
|
from .bookmark_db import BookmarkDatabase
|
|
from .telethon_db import TelethonDatabase
|