From e8e7d5ee139e9419894083725b5d7e63120dfb31 Mon Sep 17 00:00:00 2001 From: Arthur Golubtsov Date: Tue, 2 Jun 2020 18:03:47 +0300 Subject: [PATCH] Move module .py files to modules folder --- drone/{animation_lib.py => modules/animation.py} | 0 drone/{ => modules}/client_core.py | 0 drone/{mavros_mavlink.py => modules/mavros_wrapper.py} | 0 drone/{tasking_lib.py => modules/tasking.py} | 0 drone/{visual_pose_watchdog.py => modules/watchdog.py} | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename drone/{animation_lib.py => modules/animation.py} (100%) rename drone/{ => modules}/client_core.py (100%) rename drone/{mavros_mavlink.py => modules/mavros_wrapper.py} (100%) rename drone/{tasking_lib.py => modules/tasking.py} (100%) rename drone/{visual_pose_watchdog.py => modules/watchdog.py} (100%) diff --git a/drone/animation_lib.py b/drone/modules/animation.py similarity index 100% rename from drone/animation_lib.py rename to drone/modules/animation.py diff --git a/drone/client_core.py b/drone/modules/client_core.py similarity index 100% rename from drone/client_core.py rename to drone/modules/client_core.py diff --git a/drone/mavros_mavlink.py b/drone/modules/mavros_wrapper.py similarity index 100% rename from drone/mavros_mavlink.py rename to drone/modules/mavros_wrapper.py diff --git a/drone/tasking_lib.py b/drone/modules/tasking.py similarity index 100% rename from drone/tasking_lib.py rename to drone/modules/tasking.py diff --git a/drone/visual_pose_watchdog.py b/drone/modules/watchdog.py similarity index 100% rename from drone/visual_pose_watchdog.py rename to drone/modules/watchdog.py