File: foo.go

package info (click to toggle)
mockery 2.15.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,252 kB
  • sloc: makefile: 35; sh: 29
file content (11 lines) | stat: -rw-r--r-- 118 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
package foo

type Baz struct {
	One string
	Two int
}

type Foo interface {
	DoFoo() string
	GetBaz() (*Baz, error)
}