Created
January 15, 2026 22:06
-
-
Save LethalMaus/e08080b074b654ea8b4013c12fda270f to your computer and use it in GitHub Desktop.
WearPaths.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package dev.jamescullimore.examplewatchapp.shared.wear | |
| object WearPaths { | |
| const val CONTROL = "/device-control" | |
| const val USER_PROFILE = "/user-profile" | |
| const val REQUEST_CONTROL = "/request-control" | |
| const val PING = "/ping" | |
| const val PONG = "/pong" | |
| } | |
| object WearKeys { | |
| const val HOLDER = "holder" | |
| const val EMERGENCY = "emergency" | |
| const val TIMESTAMP = "timestamp" | |
| const val USERNAME = "username" | |
| const val REQUESTER = "requester" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment