Michael Anthony Knyszek | d0f8a75 | 2018-12-07 00:07:43 +0000 | [diff] [blame] | 1 | // Copyright 2017 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
Michael Anthony Knyszek | d0f8a75 | 2018-12-07 00:07:43 +0000 | [diff] [blame] | 5 | package main |
| 6 | |
| 7 | import ( |
Michael Anthony Knyszek | 429bae7 | 2018-12-20 20:21:45 +0000 | [diff] [blame] | 8 | "errors" |
Michael Anthony Knyszek | d0f8a75 | 2018-12-07 00:07:43 +0000 | [diff] [blame] | 9 | ) |
| 10 | |
Michael Anthony Knyszek | 429bae7 | 2018-12-20 20:21:45 +0000 | [diff] [blame] | 11 | var errNotPermitted = errors.New("operation not permitted") |