mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
10 lines
280 B
Go
10 lines
280 B
Go
|
package requests
|
||
|
|
||
|
import "github.com/status-im/status-go/multiaccounts"
|
||
|
|
||
|
type ExportUnencryptedDatabase struct {
|
||
|
Account multiaccounts.Account `json:"account"`
|
||
|
Password string `json:"password"`
|
||
|
DatabasePath string `json:"databasePath"`
|
||
|
}
|