mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-21 01:36:46 +00:00
12 lines
307 B
Go
12 lines
307 B
Go
//go:build android
|
|
|
|
package android
|
|
|
|
// PlatformFiles groups paths to files used internally by the engine that can't be created/modified
|
|
// at their default locations due to android OS restrictions.
|
|
type PlatformFiles interface {
|
|
ConfigurationFilePath() string
|
|
StateFilePath() string
|
|
CacheDir() string
|
|
}
|