-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatasources.go
More file actions
18 lines (17 loc) · 796 Bytes
/
datasources.go
File metadata and controls
18 lines (17 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package main
import (
// Import all datasource modules to trigger their init() functions
_ "github.com/rubiojr/ergs/pkg/datasources/chromium"
_ "github.com/rubiojr/ergs/pkg/datasources/codeberg"
_ "github.com/rubiojr/ergs/pkg/datasources/datadis"
_ "github.com/rubiojr/ergs/pkg/datasources/firefox"
_ "github.com/rubiojr/ergs/pkg/datasources/gasstations"
_ "github.com/rubiojr/ergs/pkg/datasources/github"
_ "github.com/rubiojr/ergs/pkg/datasources/hackernews"
_ "github.com/rubiojr/ergs/pkg/datasources/homeassistant"
_ "github.com/rubiojr/ergs/pkg/datasources/openmeteo"
_ "github.com/rubiojr/ergs/pkg/datasources/rss"
_ "github.com/rubiojr/ergs/pkg/datasources/rtve"
_ "github.com/rubiojr/ergs/pkg/datasources/timestamp"
_ "github.com/rubiojr/ergs/pkg/datasources/zedthreads"
)