mirror of
https://github.com/status-im/status-go.git
synced 2025-01-18 02:31:47 +00:00
735a422230
* chore_: create v2 endpoints for status.go to use status-backend server * feat_: support using http for media server (#6060)
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"`
|
|
}
|