mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-14 01:00:39 +00:00
10 lines
136 B
Python
10 lines
136 B
Python
from ansiblelater import settings
|
|
|
|
|
|
def get_settings(args):
|
|
config = settings.Settings(
|
|
args=args,
|
|
)
|
|
|
|
return config
|