mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
11 lines
189 B
Go
11 lines
189 B
Go
|
// +build !windows
|
||
|
|
||
|
package update
|
||
|
|
||
|
// shamelessly copied from
|
||
|
// https://github.com/inconshreveable/go-update/blob/master/hide_windows.go
|
||
|
|
||
|
func hideFile(path string) error {
|
||
|
return nil
|
||
|
}
|