Removed Stuff
This commit is contained in:
parent
5e30a85098
commit
24891071f8
4 changed files with 4 additions and 29 deletions
|
|
@ -1,8 +0,0 @@
|
|||
package Lotus
|
||||
|
||||
type Checksum struct{
|
||||
MD5 string
|
||||
SHA1 string
|
||||
SHA256 string
|
||||
SHA512 string
|
||||
}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
package Lotus
|
||||
|
||||
type Package struct {
|
||||
Publisher string
|
||||
Name string
|
||||
Version string
|
||||
Description string
|
||||
Tags Tags
|
||||
PackageSize int64
|
||||
Checksums Checksum
|
||||
Architecture string
|
||||
Dependencies []Package
|
||||
}
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
package Lotus
|
||||
|
||||
type Tags []string
|
||||
|
|
@ -4,11 +4,11 @@ import (
|
|||
"github.com/urfave/cli/v2"
|
||||
"lpm-cli/Commands"
|
||||
"lpm-cli/Informations"
|
||||
"lpm-cli/Tools"
|
||||
. "lpm-cli/logging"
|
||||
. "lpm-cli/Logging"
|
||||
"os"
|
||||
)
|
||||
|
||||
|
||||
func main() {
|
||||
Logger.Init()
|
||||
|
||||
|
|
@ -26,8 +26,7 @@ func main() {
|
|||
},
|
||||
}
|
||||
|
||||
|
||||
err := app.Run(os.Args)
|
||||
if err != nil {
|
||||
Logger.Fatal(err)
|
||||
}
|
||||
ErrorHandler.HandleFatal(err)
|
||||
}
|
||||
Reference in a new issue