diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-11-02 00:13:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-11-02 00:13:27 +0000 |
commit | bbfb8ee3e7ffdd69ac4173acb1bbb06dee0842f9 (patch) | |
tree | d8bf9c8a4dd90768fe332630d047a154360debfd /tests/optf-cmso/cmso/attlibs/UID.py | |
parent | 6b94dbdcf230c1f880f76ffd8224a5ef5c9222e9 (diff) | |
parent | 8bf49988b7d6af5fdb48b5d2c1f830fbe318e83a (diff) |
Merge "Change Management Schedule Optimization"
Diffstat (limited to 'tests/optf-cmso/cmso/attlibs/UID.py')
-rw-r--r-- | tests/optf-cmso/cmso/attlibs/UID.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/optf-cmso/cmso/attlibs/UID.py b/tests/optf-cmso/cmso/attlibs/UID.py new file mode 100644 index 00000000..43748096 --- /dev/null +++ b/tests/optf-cmso/cmso/attlibs/UID.py @@ -0,0 +1,8 @@ +import uuid + +class UID: + """UUID is a simple library that generates a uuid""" + + def generate_UUID(self): + """generate a uuid""" + return uuid.uuid4()
\ No newline at end of file |