diff --git a/v2/internal/runtime/system.go b/v2/internal/runtime/system.go index c82af3124..3bb97dc33 100644 --- a/v2/internal/runtime/system.go +++ b/v2/internal/runtime/system.go @@ -11,6 +11,8 @@ import ( // System defines all System related operations type System interface { IsDarkMode() bool + Platform() string + AppType() string } // system exposes the System interface