bb307d34d2
- Adds django rest framework to requirements - Adds basic plant model with id and name fields - Adds CRUD endpoints to interact with plant objects
5 lines
92 B
Python
5 lines
92 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ApiConfig(AppConfig):
|
|
name = 'right_tree.api'
|