(self)
| 22 | """ Proxy CRUD operator""" |
| 23 | |
| 24 | def __init__(self): |
| 25 | self.conf = ConfigHandler() |
| 26 | self.db = DbClient(self.conf.dbConn) |
| 27 | self.db.changeTable(self.conf.tableName) |
| 28 | |
| 29 | def get(self, https=False): |
| 30 | """ |
nothing calls this directly
no test coverage detected