Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TAM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Labrador
TAM
Merge requests
!1
Change to custom setup
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Change to custom setup
init
into
master
Overview
0
Commits
2
Pipelines
0
Changes
21
Merged
Change to custom setup
Otto Visser
requested to merge
init
into
master
May 3, 2018
Overview
0
Commits
2
Pipelines
0
Changes
21
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
c6f0ae81
2 commits,
May 3, 2018
21 files
+
542
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
21
backend/src/main/java/nl/tudelft/ewi/tam/TamApplication.java
0 → 100644
+
13
−
0
View file @ c6f0ae81
Edit in single-file editor
Open in Web IDE
package
nl.tudelft.ewi.tam
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
public
class
TamApplication
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
PrintLn
(
"Hello World!"
);
SpringApplication
.
run
(
TamApplication
.
class
,
args
);
}
}
Loading