point / database /__init__.py
eithney
code ref
e74eb63
Raw
History Blame Contribute Delete
159 Bytes
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
数据库和数据处理模块
"""
from .db_manager import get_db_instance
__all__ = ['get_db_instance']