mirror of
https://github.com/fergalmoran/qrmaker.git
synced 2025-12-22 10:00:50 +00:00
10 lines
211 B
Python
10 lines
211 B
Python
from pymongo import Connection
|
|
import logging
|
|
|
|
class Controller:
|
|
def __init__(self):
|
|
self._cn = Connection()
|
|
self.DB = self._cn.qrmaker
|
|
logging.debug("Created database connection")
|
|
|