12 lines
229 B
Python
12 lines
229 B
Python
from __future__ import absolute_import
|
|
|
|
from .base import Mutable, Taggable
|
|
|
|
|
|
class Repository(Mutable, Taggable):
|
|
subsystem = "repo"
|
|
endpoint = "/repository"
|
|
|
|
@classmethod
|
|
def _pk_key(cls):
|
|
return 'name'
|