mirror of
https://github.com/akvorado/akvorado.git
synced 2025-12-11 22:14:02 +01:00
13 lines
380 B
Go
13 lines
380 B
Go
// SPDX-FileCopyrightText: 2022 Free Mobile
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
package demoexporter
|
|
|
|
// Configuration describes the configuration for the demo exporter component.
|
|
type Configuration struct{}
|
|
|
|
// DefaultConfiguration represents the default configuration for the demo exporter component.
|
|
func DefaultConfiguration() Configuration {
|
|
return Configuration{}
|
|
}
|