Adds a POST /mcp endpoint (github.com/modelcontextprotocol/go-sdk) with
three tools mirroring the existing /calendar logic: get_calendar_today,
get_calendar_for_date and get_holidays. Bumps go.mod to Go 1.25 (required
by the SDK) and vendors the new dependencies. Also fixes an unanchored
.gitignore rule ("domogeek") that was silently excluding all untracked
files under cmd/domogeek/.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Hu8wwahgecuCGfesTKCfEd
27 lines
609 B
Go
27 lines
609 B
Go
//go:generate go run valid_asm.go -out valid_amd64.s -stubs valid_amd64.go
|
|
package ascii
|
|
|
|
import (
|
|
"github.com/segmentio/asm/ascii"
|
|
)
|
|
|
|
// Valid returns true if b contains only ASCII characters.
|
|
func Valid(b []byte) bool {
|
|
return ascii.Valid(b)
|
|
}
|
|
|
|
// ValidBytes returns true if b is an ASCII character.
|
|
func ValidByte(b byte) bool {
|
|
return ascii.ValidByte(b)
|
|
}
|
|
|
|
// ValidBytes returns true if b is an ASCII character.
|
|
func ValidRune(r rune) bool {
|
|
return ascii.ValidRune(r)
|
|
}
|
|
|
|
// ValidString returns true if s contains only ASCII characters.
|
|
func ValidString(s string) bool {
|
|
return ascii.ValidString(s)
|
|
}
|