Skip to content
forked from josharian/impl

impl generates method stubs for implementing an interface.

License

Notifications You must be signed in to change notification settings

anuengineer/impl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

impl generates method stubs for implementing an interface.

Sample usage:

$ impl 'f *File' io.ReadWriteCloser
func (f *File) Read(p []byte) (n int, err error) {
	panic("not implemented")
}

func (f *File) Write(p []byte) (n int, err error) {
	panic("not implemented")
}

func (f *File) Close() error {
	panic("not implemented")
}

You can use impl from Vim with vim-go-impl

About

impl generates method stubs for implementing an interface.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published