mirror of
https://github.com/samuelncui/yatm.git
synced 2026-01-09 14:43:25 +00:00
12 lines
191 B
Go
12 lines
191 B
Go
package external
|
|
|
|
import "github.com/samuelncui/tapemanager/library"
|
|
|
|
type External struct {
|
|
lib *library.Library
|
|
}
|
|
|
|
func New(lib *library.Library) *External {
|
|
return &External{lib: lib}
|
|
}
|