from django.contrib import admin

# Register your models here.
from dataset.models import Dataset

admin.site.register(Dataset)
