Add Example Javacord Implementation

This commit is contained in:
Julian Staudt 2020-10-13 17:27:29 +02:00
parent 2fbd90dfee
commit 484dc0435f
12 changed files with 599 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<configuration>
<appender class="ch.qos.logback.core.ConsoleAppender" name="console">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} %msg%n</pattern>
</encoder>
<target>System.out</target>
</appender>
<root level="info">
<appender-ref ref="console"/>
</root>
</configuration>