from django.contrib import admin
from .models import Coffee

# Mendaftarkan model coffee ke admin
admin.site.register(Coffee)
