pkger/apply.go

15 lines
213 B
Go
Raw Normal View History

2019-09-22 23:47:40 +03:00
// +build !debug
2019-09-21 19:51:29 +03:00
package pkger
import (
"github.com/markbates/pkger/pkging"
)
func Apply(pkg pkging.Pkger, err error) error {
2019-09-22 23:47:40 +03:00
gil.Lock()
defer gil.Unlock()
2019-09-21 19:51:29 +03:00
current = pkging.Wrap(current, pkg)
return nil
}