summaryrefslogtreecommitdiffstats
path: root/cmso-robot/robot/locallibrary/cmsoUtils/UUID.py
blob: 15567ceccc3b31d08bc5ecc7e60311a2010d844b (plain)
1
2
3
4
5
6
7
8
import uuid

class UUID:
    """UUID is a simple library that generates a uuid"""
    
    def generate_UUID(self):
        """generate a uuid"""
        return uuid.uuid4()