-
Lückemeyer authored
Initial commit of the backend for the fork of the Moodle Dockerized Test Agent (MoDTA) from the Moodle Dockerized Test Tool (MoodleDTT)
5372c0e5
package de.hftstuttgart.dtabackend;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DtaBackendApplication {
public static void main(String[] args) {
SpringApplication.run(DtaBackendApplication.class, args);
}
}