mirror of
https://github.com/samuelncui/yatm.git
synced 2026-01-05 04:55:23 +00:00
12 lines
184 B
Go
12 lines
184 B
Go
package external
|
|
|
|
import "github.com/samuelncui/yatm/library"
|
|
|
|
type External struct {
|
|
lib *library.Library
|
|
}
|
|
|
|
func New(lib *library.Library) *External {
|
|
return &External{lib: lib}
|
|
}
|