forked from Silverfish/proton-bridge
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)
|
|
}
|