mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-11 05:06:51 +00:00
10 lines
216 B
Go
10 lines
216 B
Go
package bridge
|
|
|
|
func (bridge *Bridge) GetCurrentUserAgent() string {
|
|
return bridge.identifier.GetUserAgent()
|
|
}
|
|
|
|
func (bridge *Bridge) SetCurrentPlatform(platform string) {
|
|
bridge.identifier.SetPlatform(platform)
|
|
}
|