aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/assets/lottie-samples/create.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/bots/assets/lottie-samples/create.py')
-rwxr-xr-xinfra/bots/assets/lottie-samples/create.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/infra/bots/assets/lottie-samples/create.py b/infra/bots/assets/lottie-samples/create.py
new file mode 100755
index 0000000000..7f67e12694
--- /dev/null
+++ b/infra/bots/assets/lottie-samples/create.py
@@ -0,0 +1,28 @@
+#!/usr/bin/env python
+#
+# Copyright 2017 Google Inc.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+
+"""Create the asset."""
+
+
+import argparse
+
+
+def create_asset(target_dir):
+ """Create the asset."""
+ raise NotImplementedError('Implement me!')
+
+
+def main():
+ parser = argparse.ArgumentParser()
+ parser.add_argument('--target_dir', '-t', required=True)
+ args = parser.parse_args()
+ create_asset(args.target_dir)
+
+
+if __name__ == '__main__':
+ main()