after 4 hours of fucking around i finally got git to work ffs

This commit is contained in:
deepCurse 2021-11-29 12:29:33 -04:00
parent 6585f56133
commit c95e1fccab
4 changed files with 45 additions and 0 deletions

9
.classpath Normal file
View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="/libs/JDA-4.4.0_350-withDependencies.jar"/>
<classpathentry kind="lib" path="/libs/slf4j-api-1.7.9.jar"/>
<classpathentry kind="lib" path="/libs/slf4j-simple-1.7.9.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/bin/

24
.project Normal file
View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<name>nopalmo</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View file

@ -0,0 +1,11 @@
package pkg.deepCurse.nopalmo.core;
public class Boot {
public static void main(String[] args) {
System.out.println("ech");
}
}