17 lines
258 B
Python
17 lines
258 B
Python
class ImageRegistry(object):
|
|
"""
|
|
{
|
|
"uuid": uuid,
|
|
"slug": slug,
|
|
"name": name,
|
|
"objects": [
|
|
{ "uri": obj1_uri },
|
|
{ "uri": obj2_uri }
|
|
]
|
|
}
|
|
"""
|
|
def __init__(self):
|
|
pass
|
|
|
|
|