8 lines
86 B
Go
8 lines
86 B
Go
package main
|
|
|
|
type Method struct{}
|
|
|
|
// Run
|
|
func (Method) Run() error {
|
|
return nil
|
|
}
|