Changed name to command
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-04-14 17:48:46 +02:00
parent 2d9b771d14
commit c0a554ea98
2 changed files with 5 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ SUPPORTED_PROGRAM_STRUCTURE_VERSION = 1
class CommandSchema(Schema):
name = fields.Str(required=True)
command = fields.Str(required=True)
args = fields.Dict(required=True)
class Meta: