Files
amcs/internal/store/helpers.go
Hein 0eb6ac7ee5 feat(tools): add maintenance and meal planning tools with CRUD operations
- Implement maintenance tool for adding, logging, and retrieving tasks
- Create meals tool for managing recipes, meal plans, and shopping lists
- Introduce reparse metadata tool for updating thought metadata
- Add household knowledge, home maintenance, family calendar, meal planning, and professional CRM database migrations
- Grant necessary permissions for new database tables
2026-03-26 23:29:03 +02:00

16 lines
167 B
Go

package store
func nullStr(s string) *string {
if s == "" {
return nil
}
return &s
}
func strVal(s *string) string {
if s == nil {
return ""
}
return *s
}