From 821b987d3ce33153ace5a4741f193290b9d3aec7 Mon Sep 17 00:00:00 2001 From: yoyosource Date: Sun, 20 Jun 2021 23:36:04 +0200 Subject: [PATCH] Add BackupCommand Signed-off-by: yoyosource --- .../features/backup/BackupCommand.java | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 BauSystem_Main/src/de/steamwar/bausystem/features/backup/BackupCommand.java diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/backup/BackupCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/backup/BackupCommand.java new file mode 100644 index 00000000..51bd8b0d --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/backup/BackupCommand.java @@ -0,0 +1,33 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2021 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package de.steamwar.bausystem.features.backup; + +import de.steamwar.bausystem.linkage.LinkageType; +import de.steamwar.bausystem.linkage.Linked; +import de.steamwar.command.SWCommand; + +@Linked(LinkageType.COMMAND) +public class BackupCommand extends SWCommand { + + public BackupCommand() { + super("backup", "bu"); + } + +}