diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-10-16 14:38:57 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-10-16 14:38:57 +0900 |
| commit | c21168a74181903535c63f49c5a6d3bd2052c883 (patch) | |
| tree | 6ed272c6a4d3712624077cf39794d7d1eb22295f /internal/app/share.pulse.go | |
| parent | 084cd84f36a1d608541b4aa4e1e95334395d8953 (diff) | |
system: move enablements from state package
This removes the unnecessary import of the state package.
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'internal/app/share.pulse.go')
| -rw-r--r-- | internal/app/share.pulse.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/app/share.pulse.go b/internal/app/share.pulse.go index 0103b895..4076c511 100644 --- a/internal/app/share.pulse.go +++ b/internal/app/share.pulse.go @@ -8,7 +8,7 @@ import ( "path" "git.ophivana.moe/cat/fortify/internal/fmsg" - "git.ophivana.moe/cat/fortify/internal/state" + "git.ophivana.moe/cat/fortify/internal/system" ) const ( @@ -26,7 +26,7 @@ var ( ) func (seal *appSeal) sharePulse() error { - if !seal.et.Has(state.EnablePulse) { + if !seal.et.Has(system.EPulse) { return nil } |
