mirror of
ssh://devgit.janware.com/janware/proj/jw-python
synced 2026-06-18 11:16:39 +02: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
|