gomuks/matrix/nocrypto.go
2020-05-05 20:38:58 +03:00

14 lines
244 B
Go

// This contains no-op stubs of the methods in crypto.go for non-cgo builds with crypto disabled.
// +build !cgo
package matrix
func isBadEncryptError(err error) bool {
return false
}
func (c *Container) initCrypto() error {
return nil
}