6 lines
83 B
Go
6 lines
83 B
Go
package main
|
|
|
|
type Testinger interface {
|
|
// Method
|
|
Method(input string) error
|
|
}
|