14 lines
181 B
Go
14 lines
181 B
Go
//go:build !android
|
|
|
|
package platform
|
|
|
|
import "log"
|
|
|
|
func NewVaultSharer(goos string) VaultSharer {
|
|
return nil
|
|
}
|
|
|
|
func LogInfo(tag, msg string) {
|
|
log.Printf("%s: %s", tag, msg)
|
|
}
|