master
go 13 lines 256 Bytes
Raw
1 // SPDX-License-Identifier: GPL-3.0-or-later
2
3 package powerdns
4
5 // https://doc.powerdns.com/authoritative/http-api/statistics.html#objects
6 type (
7 statisticMetrics []statisticMetric
8 statisticMetric struct {
9 Name string
10 Type string
11 Value any
12 }
13 )