mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
15 lines
449 B
Python
15 lines
449 B
Python
#######################################################################
|
|
#
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
#
|
|
# Copyright (C) 2013 - 2022, 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 TestModule2(TestModuleBase):
|
|
pass
|