misc: small fix or general refactoring i did not bother commenting

This commit is contained in:
evilsocket 2018-03-28 19:49:46 +02:00
commit 39ed078204
No known key found for this signature in database
GPG key ID: 1564D7F30393A456
3 changed files with 9 additions and 18 deletions

View file

@ -34,6 +34,7 @@ var (
ErrAlreadyStarted = errors.New("Module is already running.")
ErrAlreadyStopped = errors.New("Module is not running.")
ErrNotSupported = errors.New("This component is not supported on this OS.")
reCmdSpaceCleaner = regexp.MustCompile(`^([^\s]+)\s+(.+)$`)
)