001package com.stuypulse.robot.commands.auton;
002
003import edu.wpi.first.wpilibj2.command.SequentialCommandGroup;
004
005/*-
006 * This auton does nothing... it is used as a placeholder
007 *
008 * @author Sam Belliveau
009 */
010public class DoNothingAuton extends SequentialCommandGroup {
011
012    public DoNothingAuton() {
013        addCommands();
014    }
015}