mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-10-16 09:27:37 +03:00
17 lines
227 B
Go
17 lines
227 B
Go
package helpers
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func canSuspendApp() bool {
|
|
return false
|
|
}
|
|
|
|
func sendStopSignal() error {
|
|
return nil
|
|
}
|
|
|
|
func installResumeSignalHandler(log *logrus.Entry, onResume func() error) {
|
|
}
|