10 lines
228 B
Go
10 lines
228 B
Go
package lifecycle
|
|
|
|
type OpenIntent string
|
|
|
|
const (
|
|
OpenIntentNone OpenIntent = ""
|
|
OpenIntentRemoteSyncSetup OpenIntent = "remote_sync_setup"
|
|
OpenIntentRemoteSyncSettings OpenIntent = "remote_sync_settings"
|
|
)
|