Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## go-acl

[![Build status](https://ci.appveyor.com/api/projects/status/rbdyu7c39o2j0ru9?svg=true)](https://ci.appveyor.com/project/nathan-osman/go-acl)
[![GoDoc](https://godoc.org/github.com/hectane/go-acl?status.svg)](https://godoc.org/github.com/hectane/go-acl)
[![GoDoc](https://godoc.org/github.com/DataDog/go-acl?status.svg)](https://godoc.org/github.com/DataDog/go-acl)
[![MIT License](http://img.shields.io/badge/license-MIT-9370d8.svg?style=flat)](http://opensource.org/licenses/MIT)

Manipulating ACLs (Access Control Lists) on Windows is difficult. go-acl wraps the Windows API functions that control access to objects, simplifying the process.
Expand All @@ -11,7 +11,7 @@ Manipulating ACLs (Access Control Lists) on Windows is difficult. go-acl wraps t
To use the package add the following imports:

import (
"github.com/hectane/go-acl"
"github.com/DataDog/go-acl"
"golang.org/x/sys/windows"
)

Expand Down Expand Up @@ -40,7 +40,7 @@ To grant read access to user "Alice" and deny write access to user "Bob":
go-acl's `api` package exposes the individual Windows API functions that are used to manipulate ACLs. For example, to retrieve the current owner of a file:

import (
"github.com/hectane/go-acl/api"
"github.com/DataDog/go-acl/api"
"golang.org/x/sys/windows"
)

Expand Down
2 changes: 1 addition & 1 deletion apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
package acl

import (
"github.com/hectane/go-acl/api"
"github.com/DataDog/go-acl/api"
"golang.org/x/sys/windows"

"unsafe"
Expand Down
2 changes: 1 addition & 1 deletion util.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
package acl

import (
"github.com/hectane/go-acl/api"
"github.com/DataDog/go-acl/api"
"golang.org/x/sys/windows"

"unsafe"
Expand Down