mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-08 18:46:34 -04:00
11 lines
288 B
Go
11 lines
288 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
|
|
}
|