github.com/nvi-inc/fsgo@v0.2.1/versions/fs.go (about) 1 // Copyright 2019 NVI Inc. All rights reserved. 2 // Use of this source code is governed by a MIT 3 // license that can be found in the LICENSE file. 4 5 package versions 6 7 type FieldSystem interface { 8 Attach() error 9 Log() string 10 Schedule() string 11 Source() string 12 SemLocked(string) (bool, error) 13 Semaphores() []string 14 Tracking() bool 15 DataValid() bool 16 }