You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package mount
-
- import (
- "gitlink.org.cn/cloudream/common/pkgs/async"
- "gitlink.org.cn/cloudream/jcs-pub/client/internal/mount/vfs/cache"
- )
-
- type MountEventChan = async.UnboundChannel[MountEvent]
-
- type MountEvent interface {
- IsMountEvent() bool
- }
-
- type ExitEvent struct {
- MountEvent
- Err error
- }
-
- type MountStatus struct {
- Cache cache.CacheStatus `json:"cache"`
- }
|