Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
hub-client / dockerhub / constants.py
Size: Mime:

class AccountTypes:
    USER = 'User'
    ORGANIZATION = "Organization"

TYPE_CHOICES = (
    (AccountTypes.USER, AccountTypes.USER),
    (AccountTypes.ORGANIZATION, AccountTypes.ORGANIZATION),
)