Files
gluetun/internal/loopstate/lock.go
Quentin McGaw 578ef768ab chore(all): return concrete types, accept interfaces
- Remove exported interfaces unused locally
- Define interfaces to accept arguments
- Return concrete types, not interfaces
2022-06-11 01:34:30 +00:00

5 lines
111 B
Go

package loopstate
func (s *State) Lock() { s.loopMu.Lock() }
func (s *State) Unlock() { s.loopMu.Unlock() }