github.com/TrueBlocks/trueblocks-core/src/apps/chifra@v0.0.0-20241022031540-b362680128f7/pkg/file/lock_windows.go (about) 1 // Copyright 2021 The TrueBlocks Authors. All rights reserved. 2 // Use of this source code is governed by a license that can 3 // be found in the LICENSE file. 4 5 package file 6 7 import ( 8 "os" 9 ) 10 11 func Lock(file *os.File) error { 12 // TODO: Don't we need this? 13 return nil 14 } 15 16 func Unlock(file *os.File) error { 17 // TODO: Don't we need this? 18 return nil 19 }