15 lines
410 B
Python
15 lines
410 B
Python
##########################################################################
|
|
#
|
|
# 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')
|