sqlor/sqlor/aiopostgresqlor.py
2021-01-03 04:36:27 +00:00

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