5 lines
121 B
Python
5 lines
121 B
Python
from django.contrib import admin
|
|
from app_be.models import Tweet
|
|
|
|
# Register your models here.
|
|
admin.site.register(Tweet) |