10 lines
241 B
Python
10 lines
241 B
Python
|
from django.apps import AppConfig
|
||
|
import os
|
||
|
|
||
|
path = os.path.dirname(os.path.abspath(__file__)) + "/assets/bots/geoffrey.py"
|
||
|
|
||
|
|
||
|
class GeoffreyAppConfig(AppConfig):
|
||
|
name = 'GeoffreyApp'
|
||
|
verbose_name = "Geoffrey: Minecraft Web Database"
|