14 lines
292 B
Python
14 lines
292 B
Python
# -*- coding: utf-8 -*-
|
|
from amplify.agent import Singleton
|
|
|
|
|
|
__author__ = "Grant Hulegaard"
|
|
__copyright__ = "Copyright (C) Nginx, Inc. All rights reserved."
|
|
__license__ = ""
|
|
__maintainer__ = "Grant Hulegaard"
|
|
__email__ = "grant.hulegaard@nginx.com"
|
|
|
|
|
|
class AbstractTank(Singleton):
|
|
pass
|