from django.contrib import admin
from user.models import UserInfo


admin.site.register(UserInfo)

# Register your models here.
