11 lines
127 B
Python
11 lines
127 B
Python
#!/usr/bin/env python3
|
|
|
|
|
|
def postdeploy():
|
|
"""Post-deploy steps."""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
postdeploy()
|