14 lines
283 B
Python
14 lines
283 B
Python
# Copyright: (c) 2024, Luca Bilke <luca@bil.ke>
|
|
# MIT License (see LICENSE)
|
|
|
|
from __future__ import annotations
|
|
|
|
from ansible_collections.snailed.ez_compose.plugins.module_utils.service import common as service
|
|
|
|
|
|
def main():
|
|
service.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|