2024-06-01 20:45:17 +00:00
|
|
|
# Copyright (c) Alexei Znamensky (russoz@gmail.com)
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
|
|
|
|
from ansible_collections.community.general.plugins.modules import django_createcachetable
|
2024-09-28 05:17:36 +00:00
|
|
|
from .helper import Helper, RunCommandMock # pylint: disable=unused-import
|
2024-06-01 20:45:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
Helper.from_module(django_createcachetable, __name__)
|