https://github.com/casey/timestamp
Timestamping service
https://github.com/casey/timestamp
Last synced: 9 months ago
JSON representation
Timestamping service
- Host: GitHub
- URL: https://github.com/casey/timestamp
- Owner: casey
- License: other
- Created: 2014-09-07T23:04:13.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-10-03T05:32:29.000Z (over 11 years ago)
- Last Synced: 2025-06-09T23:40:35.084Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 270 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
timestamp
=========
Timestamping service
[Test instance here.](http://rodarmor-timestamp.appspot.com)
API
---
A KEY matches `/[a-zA-Z0-9._-]+/`.
A TIME is in seconds since the epoch and matches `/[0-9]+[.][0-9]+/`.
* PUT /KEY establishes a timestamp for a key. Puts after the first are ignored.
* GET /KEY retrieves the timestamp of a key.
```
> curl -X PUT http://rodarmor-timestamp.appspot.com/hellooooooo --data ''
1412314318.736297
```