mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-10 23:45:58 -06:00
16 lines
450 B
Python
16 lines
450 B
Python
#######################################################################
|
|
#
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
#
|
|
# Copyright (C) 2013 - 2021, The pgAdmin Development Team
|
|
# This software is released under the PostgreSQL Licence
|
|
#
|
|
##########################################################################
|
|
|
|
from .registry import TestModuleBase
|
|
|
|
|
|
# This class will be registered with TestModuleRegistry (registry)
|
|
class TestModule1(TestModuleBase):
|
|
pass
|