mirror of
https://github.com/go-acme/lego.git
synced 2025-01-26 06:55:18 +02:00
6004e599ed
* feat: add dep configuration files. * chore: add vendor folder. * refactor: update Dockerfile. * review: remove git from Dockerfile. * review: remove RUN apk. * review: dep status. * feat: added .dockerignore
12 lines
133 B
Go
12 lines
133 B
Go
// +build !appengine
|
|
|
|
package memcache
|
|
|
|
import (
|
|
"unsafe"
|
|
)
|
|
|
|
func stobs(s string) []byte {
|
|
return *(*[]byte)(unsafe.Pointer(&s))
|
|
}
|