summaryrefslogtreecommitdiff
path: root/src/main/java/frc/robot/Main.java
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2024-01-18 00:35:25 +0200
committerkartofen <mladenovnasko0@gmail.com>2024-01-18 00:35:25 +0200
commitde82bb11825e8bc5087f10605b3fe2fd926f1909 (patch)
tree73723345f7c5ebfe8a64d4fe904fa85ea57538e1 /src/main/java/frc/robot/Main.java
init
Diffstat (limited to 'src/main/java/frc/robot/Main.java')
-rw-r--r--src/main/java/frc/robot/Main.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/frc/robot/Main.java b/src/main/java/frc/robot/Main.java
new file mode 100644
index 0000000..fe215d7
--- /dev/null
+++ b/src/main/java/frc/robot/Main.java
@@ -0,0 +1,15 @@
+// Copyright (c) FIRST and other WPILib contributors.
+// Open Source Software; you can modify and/or share it under the terms of
+// the WPILib BSD license file in the root directory of this project.
+
+package frc.robot;
+
+import edu.wpi.first.wpilibj.RobotBase;
+
+public final class Main {
+ private Main() {}
+
+ public static void main(String... args) {
+ RobotBase.startRobot(Robot::new);
+ }
+}