diff options
Diffstat (limited to 'bin/results.py')
-rwxr-xr-x | bin/results.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/bin/results.py b/bin/results.py new file mode 100755 index 0000000..d325dc3 --- /dev/null +++ b/bin/results.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python3 +# +# Copyright (c) 2017 Weitian LI <liweitianux@live.com> +# MIT license +# +# Weitian LI +# 2017-02-11 + +""" +Manage the analysis results in YAML format. +""" + +from _context import acispy +from acispy import results + + +if __name__ == "__main__": + results.main() |