1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

cli: fix warning

This commit is contained in:
sh0f
2020-01-03 01:09:24 +08:00
committed by Alexander Medvednikov
parent 7a031d5e23
commit 3c65af8b9a
3 changed files with 4 additions and 0 deletions

View File

@ -20,6 +20,7 @@ fn help_cmd() Command {
name: 'help',
description: 'Prints help information',
execute: help_func,
parent: 0
}
}

View File

@ -14,6 +14,7 @@ fn version_cmd() Command {
name: 'version'
description: 'Prints version information',
execute: version_func,
parent: 0
}
}