move template directories

This commit is contained in:
Noah Masur
2021-04-22 09:50:44 -04:00
parent 20d693be62
commit b5090f71a1
13 changed files with 12 additions and 12 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