Browse Source

Rename lib and src dirs

Kirk Trombley 4 years ago
parent
commit
04e6cae81c

+ 2 - 2
Dockerfile.groupme

@@ -14,11 +14,11 @@ EXPOSE 5000
 
 COPY logging.conf .
 
-COPY ./lib/ /app/rollbot
+COPY ./rollbot/ /app/rollbot
 
 RUN pip3 install -e /app/rollbot
 
-COPY ./src/ /app/commands
+COPY ./commands/ /app/commands
 
 RUN pip3 install -e /app/commands
 

+ 0 - 0
src/commands/__init__.py → commands/commands/__init__.py


+ 0 - 0
src/commands/curse.py → commands/commands/curse.py


+ 0 - 0
src/commands/plex.py → commands/commands/plex.py


+ 0 - 0
src/commands/querying.py → commands/commands/querying.py


+ 0 - 0
src/commands/roll.py → commands/commands/roll.py


+ 0 - 0
src/commands/session.py → commands/commands/session.py


+ 0 - 0
src/commands/seychelles.py → commands/commands/seychelles.py


+ 0 - 0
src/commands/simple.py → commands/commands/simple.py


+ 0 - 0
src/commands/tarot.py → commands/commands/tarot.py


+ 0 - 0
src/commands/teamspeak.py → commands/commands/teamspeak.py


+ 0 - 0
src/commands/yell.py → commands/commands/yell.py


+ 0 - 0
src/setup.py → commands/setup.py


+ 0 - 0
lib/rollbot/__init__.py → rollbot/rollbot/__init__.py


+ 0 - 0
lib/rollbot/bot.py → rollbot/rollbot/bot.py


+ 0 - 0
lib/rollbot/decorators/__init__.py → rollbot/rollbot/decorators/__init__.py


+ 0 - 0
lib/rollbot/decorators/as_command.py → rollbot/rollbot/decorators/as_command.py


+ 0 - 0
lib/rollbot/decorators/error_handling.py → rollbot/rollbot/decorators/error_handling.py


+ 0 - 0
lib/rollbot/decorators/initialize_data.py → rollbot/rollbot/decorators/initialize_data.py


+ 0 - 0
lib/rollbot/decorators/on_event.py → rollbot/rollbot/decorators/on_event.py


+ 0 - 0
lib/rollbot/failure.py → rollbot/rollbot/failure.py


+ 0 - 0
lib/rollbot/injection/__init__.py → rollbot/rollbot/injection/__init__.py


+ 0 - 0
lib/rollbot/injection/args.py → rollbot/rollbot/injection/args.py


+ 0 - 0
lib/rollbot/injection/base.py → rollbot/rollbot/injection/base.py


+ 0 - 0
lib/rollbot/injection/data.py → rollbot/rollbot/injection/data.py


+ 0 - 0
lib/rollbot/injection/subcommand.py → rollbot/rollbot/injection/subcommand.py


+ 0 - 0
lib/rollbot/injection/util.py → rollbot/rollbot/injection/util.py


+ 0 - 0
lib/rollbot/types.py → rollbot/rollbot/types.py


+ 0 - 0
lib/setup.py → rollbot/setup.py