from django.contrib import admin
from blog.models import Post, CodeChunk
admin.site.register(Post)
admin.site.register(CodeChunk)