{"id":15345432,"url":"https://github.com/jthomas/ow","last_synced_at":"2026-05-07T04:39:34.035Z","repository":{"id":140706226,"uuid":"61639824","full_name":"jthomas/ow","owner":"jthomas","description":"Utility for running Go language Actions on OpenWhisk","archived":false,"fork":false,"pushed_at":"2018-02-12T17:35:27.000Z","size":11,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-19T10:41:49.133Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jthomas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-06-21T14:19:50.000Z","updated_at":"2018-02-12T13:00:33.000Z","dependencies_parsed_at":"2024-07-16T17:17:54.323Z","dependency_job_id":null,"html_url":"https://github.com/jthomas/ow","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jthomas/ow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jthomas%2Fow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jthomas%2Fow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jthomas%2Fow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jthomas%2Fow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jthomas","download_url":"https://codeload.github.com/jthomas/ow/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jthomas%2Fow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275673197,"owners_count":25507471,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-17T02:00:09.119Z","response_time":84,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-01T11:13:23.689Z","updated_at":"2025-09-17T21:58:18.191Z","avatar_url":"https://github.com/jthomas.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ow\n\nUtility for running Go language Actions on OpenWhisk, see [this project](https://github.com/jthomas/openwhisk_go_action).\n\ninstall\n--\n```\ngo get github.com/jthomas/ow\n```\n\nusage\n--\n\n``` go \npackage main\n\nimport (\n\t\"encoding/json\"\n\t\"github.com/jthomas/ow\"\n)\n\ntype Params struct {\n\tPayload string `json:\"payload\"`\n}\n\ntype Result struct {\n\tReversed string `json:\"reversed\"`\n}\n\nfunc reverse_string(to_reverse string) string {\n\tchars := []rune(to_reverse)\n\tfor i, j := 0, len(chars)-1; i \u003c j; i, j = i+1, j-1 {\n\t\tchars[i], chars[j] = chars[j], chars[i]\n\t}\n\treturn string(chars)\n}\n\nfunc main() {\n\tow.RegisterAction(func(value json.RawMessage) (interface{}, error) {\n\t\tvar params Params\n\t\terr := json.Unmarshal(value, \u0026params)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\treturn Result{Reversed: reverse_string(params.Payload)}, nil\n\t})\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjthomas%2Fow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjthomas%2Fow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjthomas%2Fow/lists"}