1
0
Fork 0
  • v0.3.2 32ae3a3d0d

    Arav released this 2023-09-20 03:46:41 +04:00 | 0 commits to master since this release

    Hmm... After moving a backup, this tag and last 8 commits got lost, hopefully there is a local copy.

    Downloads
  • v0.3.1 92692454da

    Arav released this 2023-08-12 20:22:09 +04:00 | 8 commits to master since this release

    Downloads
  • v0.3.0 468606e4fd

    Arav released this 2023-08-11 18:59:00 +04:00 | 13 commits to master since this release

    Implemented a Sub-path functionality. Use Router's Sub() method to create a sub-path, e.g. Sub("/api/v1") and then you can call Handler() method of a subPath struct to specify routes. E.g. for s := r.Sub("/api/v1") call s.Handler("/") to set a handler for /api/v1/ path.

    Downloads
  • v0.2.1 e25a8a42c3

    Arav released this 2023-07-23 23:34:00 +04:00 | 18 commits to master since this release

    Sanitise double slashes (//) in a path.
    Return nil if a path continues but a node has no children. This prevents returning a last handler exists in a passed path and now it will fail with 404 as it should be.

    Downloads
  • v0.2.0 5d6a3630c6

    Arav released this 2023-05-28 04:10:55 +04:00 | 21 commits to master since this release

    The most noticable change is that get() and add() methods of node type were rewritten in an iterative manner instead of recursive.

    Overall cleanup was made.

    Downloads
  • v0.1.0 5d7d595df3

    Arav released this 2023-05-26 04:08:49 +04:00 | 32 commits to master since this release

    Downloads