6 lines
94 B
Python
6 lines
94 B
Python
from django.contrib import admin
|
|
|
|
from api.tree.models import Tree
|
|
|
|
admin.site.register(Tree)
|