move templates to legacy dir

This commit is contained in:
Noah Masur
2022-06-14 19:04:12 -04:00
parent 0229df9b97
commit 4e3054d91e
12 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#!/usr/bin/env python
"""
Program
"""
def main():
"""Run the program"""
pass
if __name__ == "__main__":
main()

View File

@ -0,0 +1,8 @@
#!/bin/sh
if [ "$1" = "--help" ] || [ "$1" = "-h" ]; then
cat <<EOH
Help text
EOH
exit
fi