11 lines
170 B
Python
Executable File
11 lines
170 B
Python
Executable File
|
|
from .postgresqlor import PostgreSQLor
|
|
class AioPostgresqlor(PostgreSQLor):
|
|
@classmethod
|
|
def isMe(self,name):
|
|
return name=='aiopg'
|
|
|
|
async def commit(self):
|
|
pass
|
|
|