1package server 2 3import ( 4 "sync" 5) 6 7var ( 8 stoplock sync.Mutex 9 was_stop_requested = false 10) 11 12func stop_requested() { 13}
View as plain text