Hey! First off, thanks for creating flatnotes - it's a great project. I'm building a Garmin smartwatch app that syncs notes from flatnotes, and I ran into an issue: Garmin's Connect IQ SDK only supports GET, POST, PUT, and DELETE - there's no PATCH method available in their HTTP API. Currently the /api/notes/{title} endpoint only accepts PATCH for updates. Would it be possible to also accept PUT with the same payload?
For now I'm working around this with an nginx proxy that rewrites PUT to PATCH, but native support would be much cleaner.