Skip to content

Commit

Permalink
Made the localcollector technically buildable on other platforms, but…
Browse files Browse the repository at this point in the history
… without functionality for now
  • Loading branch information
lkarlslund committed Jun 7, 2024
1 parent f1573f2 commit 7b16762
Show file tree
Hide file tree
Showing 6 changed files with 812 additions and 790 deletions.
14 changes: 14 additions & 0 deletions modules/integrations/localmachine/collect/collect_others.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//go:build !windows
// +build !windows

package collect

import (
"errors"

"github.com/lkarlslund/adalanche/modules/integrations/localmachine"
)

func Collect() (localmachine.Info, error) {
return localmachine.Info{}, errors.New("This is not supported on this platform")
}
Loading

0 comments on commit 7b16762

Please sign in to comment.