Added initial classes that need to be written

This commit is contained in:
2019-02-03 18:47:57 -07:00
parent 5372643b52
commit 61b8fca76b
10 changed files with 87 additions and 0 deletions
@@ -0,0 +1,2 @@
public class ProofsDriver {
}
@@ -0,0 +1,11 @@
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
@Configuration
@ComponentScan
@PropertySource("classpath:development.properties")
public class WebsiteConfig {
}
@@ -0,0 +1,3 @@
public class ProofsDriverTest {
}