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