Skip to content

Commit

Permalink
Merge pull request #2 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Improvements
  • Loading branch information
andyone authored Jan 4, 2023
2 parents 356c21c + 0ba3f35 commit 40dccba
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 1 deletion.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

<p align="center">
<a href="https://kaos.sh/g/npck"><img src="https://gh.kaos.st/godoc.svg" alt="PkgGoDev" /></a>
<a href="https://kaos.sh/r/npck"><img src="https://kaos.sh/r/npck.svg" alt="GoReportCard" /></a>
<a href="https://kaos.sh/w/npck/ci"><img src="https://kaos.sh/w/npck/ci.svg" alt="GitHub Actions CI Status" /></a>
<a href="https://kaos.sh/w/npck/codeql"><img src="https://kaos.sh/w/npck/codeql.svg" alt="GitHub Actions CodeQL Status" /></a>
<a href="https://kaos.sh/c/npck"><img src="https://kaos.sh/c/npck.svg" alt="Coverage Status" /></a>
Expand Down
26 changes: 26 additions & 0 deletions npck.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package npck

// ////////////////////////////////////////////////////////////////////////////////// //
// //
// Copyright (c) 2023 ESSENTIAL KAOS //
// Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0> //
// //
// ////////////////////////////////////////////////////////////////////////////////// //

import (
"github.com/essentialkaos/npck/tar"
"github.com/essentialkaos/npck/tbz"
"github.com/essentialkaos/npck/tgz"
"github.com/essentialkaos/npck/txz"
"github.com/essentialkaos/npck/tzst"
)

// ////////////////////////////////////////////////////////////////////////////////// //

func stub() {
tar.Unpack("", "")
tbz.Unpack("", "")
tgz.Unpack("", "")
txz.Unpack("", "")
tzst.Unpack("", "")
}
1 change: 1 addition & 0 deletions tar/tar.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package tar provides method for unpacking tar files
package tar

// ////////////////////////////////////////////////////////////////////////////////// //
Expand Down
1 change: 1 addition & 0 deletions tbz/tbz.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package tbz provides method for unpacking tar.bz2 files
package tbz

// ////////////////////////////////////////////////////////////////////////////////// //
Expand Down
1 change: 1 addition & 0 deletions tgz/tgz.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package tgz provides method for unpacking tar.gz files
package tgz

// ////////////////////////////////////////////////////////////////////////////////// //
Expand Down
1 change: 1 addition & 0 deletions txz/txz.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package txz provides method for unpacking tar.xz files
package txz

// ////////////////////////////////////////////////////////////////////////////////// //
Expand Down
1 change: 1 addition & 0 deletions tzst/tzst.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package tzst provides method for unpacking tar.zst files
package tzst

// ////////////////////////////////////////////////////////////////////////////////// //
Expand Down

0 comments on commit 40dccba

Please sign in to comment.