18 lines
305 B
Python
18 lines
305 B
Python
import sys
|
|
from pathlib import Path
|
|
|
|
# Ensure the script can locate utils.py
|
|
sys.path.append(str(Path(__file__).parent))
|
|
|
|
# Import custom functions
|
|
from utils import greet_user
|
|
|
|
def main():
|
|
user = "Ansible AWX"
|
|
message = greet_user(user)
|
|
print(message)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|