10 lines
333 B
Go
10 lines
333 B
Go
package daemon
|
|
|
|
import (
|
|
// Importing packages here only to make sure their init gets called and
|
|
// therefore they register themselves to the logdriver factory.
|
|
_ "github.com/hyperhq/hypercli/daemon/logger/awslogs"
|
|
_ "github.com/hyperhq/hypercli/daemon/logger/jsonfilelog"
|
|
_ "github.com/hyperhq/hypercli/daemon/logger/splunk"
|
|
)
|