this provides character-level operations such as character creation, logging in/out, leveling them, and penalizing them. this isn't a game, yet, but it does implement and test a lot of the core functionality, just without triggers or bulk operations Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
12 lines
280 B
Python
12 lines
280 B
Python
"""Manage IdleRPG models.
|
|
|
|
SPDX-FileCopyrightText: © 2024 Brian S. Stephan <bss@incorporeal.org>
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
from django.contrib import admin
|
|
|
|
from idlerpg.models import Character, Game
|
|
|
|
admin.site.register(Character)
|
|
admin.site.register(Game)
|