from django.contrib import admin
from .models import ShortURL
@admin.register(ShortURL)
class ShortURLAdmin(admin.ModelAdmin):
list_display = ["long_url", "short_url", "followed"]