We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/helixml/kodit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
commit.go•423 B
package service
import "github.com/helixml/kodit/domain/repository"
// Commit provides read access to commits, extensible with bespoke methods later.
type Commit struct {
repository.Collection[repository.Commit]
}
// NewCommit creates a new Commit service wrapping the given store.
func NewCommit(store repository.CommitStore) *Commit {
return &Commit{Collection: repository.NewCollection[repository.Commit](store)}
}