Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
vcastellm committed Jun 10, 2024
1 parent ac11a2c commit f8a7783
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 4 additions & 0 deletions downloader/trustedstate/trustedstate.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ package trustedstate
type TrustedState struct {
Source string
}

func (t *TrustedState) Download() string {
return t.Source
}
2 changes: 1 addition & 1 deletion driver/l1infotree/l1infotree.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ package l1infotree
type L1InfoTree struct {
}

func (l1it *L1InfoTree) Process() string {
func (l1it *L1InfoTree) Drive() string {
return "L1InfoTree"
}
6 changes: 1 addition & 5 deletions syncer/syncer.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
package syncer

type Syncer interface {
// Start starts the syncer
Start() error
// Stop stops the syncer
Stop() error
type Syncer struct {
}

0 comments on commit f8a7783

Please sign in to comment.