mirror of
https://git.zavage.net/Zavage-Software/wikicrawl.git
synced 2025-04-19 06:19:21 -06:00
13 lines
186 B
Python
13 lines
186 B
Python
# Nothing is implemented here yet... This is intended to be a future
|
|
# excercise.
|
|
|
|
import sqlite3
|
|
import os
|
|
|
|
from . import config
|
|
|
|
class DataLayer:
|
|
def __init__(self):
|
|
pass
|
|
|