feat: add hello_team.py with datetime greeting and minimal requirements.txt
Some checks failed
CI / check (pull_request) Failing after 4s
Some checks failed
CI / check (pull_request) Failing after 4s
This commit is contained in:
parent
dcd0372dbe
commit
c9989bf313
8
hello_team.py
Normal file
8
hello_team.py
Normal file
@ -0,0 +1,8 @@
|
||||
from datetime import datetime
|
||||
|
||||
def main():
|
||||
now = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
||||
print(f"Hello from the AI Dev Team — {now}")
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
1
requirements.txt
Normal file
1
requirements.txt
Normal file
@ -0,0 +1 @@
|
||||
# No external dependencies required
|
||||
Loading…
Reference in New Issue
Block a user