mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-python
synced 2026-01-15 09:53:32 +01:00
12 lines
180 B
Python
12 lines
180 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
|
||
|
|
import abc
|
||
|
|
|
||
|
|
class Session(abc.ABC): # export
|
||
|
|
|
||
|
|
def __init__(self, db):
|
||
|
|
self.__db = db
|
||
|
|
|
||
|
|
@property
|
||
|
|
def db(self):
|
||
|
|
return self.__db
|