mirror of
https://github.com/kataras/iris.git
synced 2025-02-02 15:30:36 +01:00
7 lines
134 B
Go
7 lines
134 B
Go
|
package jsonx
|
||
|
|
||
|
// Exampler is an interface used by testing to generate examples.
|
||
|
type Exampler interface {
|
||
|
ListExamples() []string
|
||
|
}
|