Skip to content

Commit

Permalink
Create escalate_linux.go
Browse files Browse the repository at this point in the history
  • Loading branch information
lu4p authored Aug 25, 2019
1 parent 77a1ace commit 0d8df6a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions escalate_linux.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package escalate

import (
"errors"
"log"
)

// Escalate TODO: implement
func Escalate(path string) error {
log.Println("Path for bypass: (", path, ")")
return errors.New("Not implemented yet")
}

0 comments on commit 0d8df6a

Please sign in to comment.