File tree 2 files changed +10
-11
lines changed
2 files changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -29,16 +29,6 @@ const (
29
29
ServiceWorkerFileName = "sw.js"
30
30
)
31
31
32
- type Config struct {
33
- // TODO
34
- MotrToken string `json:"motr_token"`
35
- MotrAddress string `json:"motr_address"`
36
- IpfsGatewayURL string `json:"ipfs_gateway_url"`
37
- SonrAPIURL string `json:"sonr_api_url"`
38
- SonrRPCURL string `json:"sonr_rpc_url"`
39
- SonrChainID string `json:"sonr_chain_id"`
40
- }
41
-
42
32
func NewVaultFS (cfg * Config ) (files.Directory , error ) {
43
33
manifestBz , err := NewWebManifest ()
44
34
if err != nil {
Original file line number Diff line number Diff line change 1
1
package embed
2
2
3
- type WebManifest struct {
3
+ type Config struct {
4
+ MotrToken string `json:"motr_token"`
5
+ MotrAddress string `json:"motr_address"`
6
+ IpfsGatewayURL string `json:"ipfs_gateway_url"`
7
+ SonrAPIURL string `json:"sonr_api_url"`
8
+ SonrRPCURL string `json:"sonr_rpc_url"`
9
+ SonrChainID string `json:"sonr_chain_id"`
10
+ }
11
+
12
+ type Manifest struct {
4
13
// Required fields
5
14
Name string `json:"name"` // Full name of the application
6
15
ShortName string `json:"short_name"` // Short version of the name
You can’t perform that action at this time.
0 commit comments