mirror of
https://github.com/status-im/status-console-client.git
synced 2025-02-24 00:28:18 +00:00
10 lines
267 B
Go
10 lines
267 B
Go
package main
|
|
|
|
import "crypto/ecdsa"
|
|
|
|
// Identity is an identification of the current user.
|
|
// It is required to send messages.
|
|
// In order to not repeat the complex type and allow easier refactoring,
|
|
// it's defined as a type alias.
|
|
type Identity = *ecdsa.PrivateKey
|