mirror of
https://github.com/onyx-and-iris/voicemeeter.git
synced 2026-04-18 05:23:31 +00:00
docstrings added to functions, types and methods
CHANGELOG first update pre-commit updated to look in root of repo. version retraction added to go.mod README updated to reflect changes
This commit is contained in:
@@ -4,12 +4,14 @@ import (
|
||||
"fmt"
|
||||
)
|
||||
|
||||
// iRemote provides a set of common forwarding methods
|
||||
// iRemote provides an interface between higher methods and lower functions
|
||||
// expected to be embedded
|
||||
type iRemote struct {
|
||||
_identifier string
|
||||
index int
|
||||
}
|
||||
|
||||
// identifier returns a string identifier
|
||||
func (ir *iRemote) identifier() string {
|
||||
return ir._identifier
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user