diff options
author | Niall Sheridan <nsheridan@gmail.com> | 2016-09-03 20:56:02 +0100 |
---|---|---|
committer | Niall Sheridan <nsheridan@gmail.com> | 2016-09-03 21:16:02 +0100 |
commit | 84e4e2d56d3e2878741a2d03a98d4739db8dbd50 (patch) | |
tree | df9d3e92071291fd154f149072e470d8cecbfd11 /vendor/github.com/sid77/drop | |
parent | eb9015e8f6f92e3e4421ddaf74ad20960723596c (diff) |
Update dependencies
Also tweak travis config
Diffstat (limited to 'vendor/github.com/sid77/drop')
-rw-r--r-- | vendor/github.com/sid77/drop/README.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/vendor/github.com/sid77/drop/README.md b/vendor/github.com/sid77/drop/README.md index b27fc1a..3bea83c 100644 --- a/vendor/github.com/sid77/drop/README.md +++ b/vendor/github.com/sid77/drop/README.md @@ -1,12 +1,15 @@ # drop -An easy way for dropping privileges in Go. Just import `github.com/sid77/drop` and use: +An easy way for dropping privileges in Go. + ``` +import "github.com/sid77/drop" + // privileged code here // ... -if err := DropPrivileges("some user"); err != nil { +if err := drop.DropPrivileges("some user"); err != nil { log.Fatal(err) } |