Skip to content

Commit

Permalink
Initial project setup
Browse files Browse the repository at this point in the history
  • Loading branch information
freyacodes committed Jul 16, 2017
1 parent 1cc22dd commit 25b08a6
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.idea/
/Lavalink.iml
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>lavalink</groupId>
<artifactId>Lavalink-Server</artifactId>
<version>1.0</version>



</project>
9 changes: 9 additions & 0 deletions src/main/java/lavalink/server/Launcher.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package lavalink.server;

public class Launcher {

public static void main(String[] args) {

}

}

0 comments on commit 25b08a6

Please sign in to comment.