8 lines
126 B
Python
8 lines
126 B
Python
from django.contrib import admin
|
|
|
|
from . import models
|
|
|
|
# Register your models here.
|
|
|
|
admin.site.register(models.HistorySync)
|