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