mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-20 09:06:45 +00:00
10 lines
188 B
Go
10 lines
188 B
Go
package bridge
|
|
|
|
func (b *Bridge) GetCurrentUserAgent() string {
|
|
return b.userAgent.String()
|
|
}
|
|
|
|
func (b *Bridge) SetCurrentPlatform(platform string) {
|
|
b.userAgent.SetPlatform(platform)
|
|
}
|