16 lines
195 B
Go
16 lines
195 B
Go
package gokwallet
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// Strings.
|
|
const (
|
|
appIdTest string = "GoKwallet_Test"
|
|
)
|
|
|
|
var (
|
|
walletTest uuid.UUID = uuid.New()
|
|
folderTest uuid.UUID = uuid.New()
|
|
)
|