mirror of
https://github.com/status-im/status-go.git
synced 2025-01-23 13:11:11 +00:00
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
|
||
|
}
|