Change Management Schedule Optimization
[integration/csit.git] / tests / optf-cmso / cmso / attlibs / UID.py
1 import uuid
2
3 class UID:
4     """UUID is a simple library that generates a uuid"""
5     
6     def generate_UUID(self):
7         """generate a uuid"""
8         return uuid.uuid4()