• v0.1.7 ee6c5aa69d

    refactor(ratelimit): replace os.ReadFile/WriteFile/MkdirAll with go-io
    All checks were successful
    Security Scan / security (push) Successful in 8s
    Test / test (push) Successful in 2m24s

    Ghost released this 2026-03-16 18:31:35 +00:00 | 32 commits to dev since this release

    Swap all direct os I/O calls for coreio.Local equivalents:

    • os.ReadFile → coreio.Local.Read (returns string; []byte cast at call sites)
    • os.WriteFile + os.MkdirAll → coreio.Local.Write (creates parent dirs internally)

    Affected: Load(), Persist(), MigrateYAMLToSQLite(). go.mod gains
    forge.lthn.ai/core/go-io v0.1.2 as a direct dependency.

    Co-Authored-By: Virgil virgil@lethean.io

    Downloads