11 lines
205 B
Go
11 lines
205 B
Go
package DeviceDatabase
|
|
|
|
import (
|
|
"github.com/SommerEngineering/Ocean/Log"
|
|
)
|
|
|
|
// Function with the setup of the logging device.
|
|
func ActivateLoggingDevice() {
|
|
Log.AddLoggingDevice(Database{})
|
|
}
|