mirror of
https://github.com/status-im/status-go.git
synced 2025-01-21 04:01:45 +00:00
679391999f
* feat_: LogOnPanic linter * fix_: add missing defer LogOnPanic * chore_: make vendor * fix_: tests, address pr comments * fix_: address pr comments
10 lines
223 B
Go
10 lines
223 B
Go
// SPDX-FileCopyrightText: 2019 The Go Language Server Authors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package protocol
|
|
|
|
// NewVersion returns the int32 pointer converted i.
|
|
func NewVersion(i int32) *int32 {
|
|
return &i
|
|
}
|