Restructure to enable use of modules for different components of pgAdmin.

This commit is contained in:
Dave Page
2014-12-18 17:49:09 +00:00
parent 255d6c1437
commit b9bf6d9aa3
6 changed files with 130 additions and 65 deletions

View File

@@ -0,0 +1,14 @@
##########################################################################
#
# pgAdmin 4 - PostgreSQL Tools
#
# Copyright (C) 2013 - 2014, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
# utils/__init__.py - Initialise the module
#
##########################################################################
from flask import Module
module = Module(__name__, 'utils')