mirror of
https://github.com/gopherdata/gophernotes.git
synced 2025-04-22 09:46:05 +00:00

import "/path/to/some/package" is now module-aware * require Go compiler >= 1.11, the first version with modules support * delete vendor/ directory, replaced by versioned dependencies in go.mod
8 lines
153 B
Go
8 lines
153 B
Go
// +build !go1.11
|
|
|
|
// cause a compile error if Go compiler version < 1.11
|
|
|
|
package main
|
|
|
|
var _ int = "error: Go >= 1.11 required to compile Gophernotes"
|