from django.contrib import admin

from apps.client.models import Client


# Register your models here.
admin.site.register(Client)
