dpang commited on
Commit
0adb9e2
·
verified ·
1 Parent(s): e8edc26

Add server/tasks/__init__.py

Browse files
Files changed (1) hide show
  1. server/tasks/__init__.py +21 -0
server/tasks/__init__.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """RANS task implementations."""
2
+
3
+ from .go_to_position import GoToPositionTask
4
+ from .go_to_pose import GoToPoseTask
5
+ from .track_linear_velocity import TrackLinearVelocityTask
6
+ from .track_linear_angular_velocity import TrackLinearAngularVelocityTask
7
+
8
+ TASK_REGISTRY = {
9
+ "GoToPosition": GoToPositionTask,
10
+ "GoToPose": GoToPoseTask,
11
+ "TrackLinearVelocity": TrackLinearVelocityTask,
12
+ "TrackLinearAngularVelocity": TrackLinearAngularVelocityTask,
13
+ }
14
+
15
+ __all__ = [
16
+ "GoToPositionTask",
17
+ "GoToPoseTask",
18
+ "TrackLinearVelocityTask",
19
+ "TrackLinearAngularVelocityTask",
20
+ "TASK_REGISTRY",
21
+ ]