Skip to content

Commit 77900b3

Browse files
author
Prad N
committed
feat: define configuration and manifest types
1 parent 416716d commit 77900b3

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

embed/embed.go

-10
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,6 @@ const (
2929
ServiceWorkerFileName = "sw.js"
3030
)
3131

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-
4232
func NewVaultFS(cfg *Config) (files.Directory, error) {
4333
manifestBz, err := NewWebManifest()
4434
if err != nil {

embed/types.go

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
package embed
22

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 {
413
// Required fields
514
Name string `json:"name"` // Full name of the application
615
ShortName string `json:"short_name"` // Short version of the name

0 commit comments

Comments
 (0)