11 lines
112 B
Go
11 lines
112 B
Go
package game
|
|
|
|
import (
|
|
"crypto/ed25519"
|
|
)
|
|
|
|
type User struct {
|
|
Name string
|
|
PublicKey ed25519.PublicKey
|
|
}
|