# golang-impl **Repository Path**: lcbkeith/golang-impl ## Basic Information - **Project Name**: golang-impl - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-07 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README `impl` generates method stubs for implementing an interface. ```bash go get -u github.com/josharian/impl ``` Sample usage: ```bash $ 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 also provide a full name by specifying the package path. # This helps in cases where the interface can't be guessed # just from the package name and interface name. $ impl 's *Source' golang.org/x/oauth2.TokenSource func (s *Source) Token() (*oauth2.Token, error) { panic("not implemented") } ``` You can use `impl` from Vim with [vim-go-impl](https://github.com/rhysd/vim-go-impl)