Skip to content

Commit

Permalink
Moved Constants.java to the correct spot
Browse files Browse the repository at this point in the history
  • Loading branch information
shinthebinn committed Feb 3, 2024
1 parent af6df99 commit 7a07dfd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

package frc.robot;

import frc.constants.Constants.OperatorConstants;
import frc.constants.Constants.ShuffleboardConstants;
import frc.robot.commands.Autos;
import frc.robot.constants.Constants.OperatorConstants;
import frc.robot.constants.Constants.ShuffleboardConstants;

import org.littletonrobotics.junction.networktables.LoggedDashboardChooser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package frc.constants;
package frc.robot.constants;

public final class Constants {
public static class OperatorConstants {
Expand Down

0 comments on commit 7a07dfd

Please sign in to comment.