This repository has been archived on 2022-11-27. You can view files and clone it, but cannot push or open issues or pull requests.
activitypub/README.md

18 lines
864 B
Markdown
Raw Normal View History

# Activity Pub for Go
2017-09-11 20:52:20 +00:00
2019-01-22 15:56:15 +00:00
[![MIT Licensed](https://img.shields.io/github/license/go-ap/activitypub.svg)](https://raw.githubusercontent.com/go-ap/activitypub/master/LICENSE)
[![Build Status](https://builds.sr.ht/~mariusor/activitypub.svg)](https://builds.sr.ht/~mariusor/activitypub)
2019-06-11 13:26:38 +00:00
[![Test Coverage](https://img.shields.io/codecov/c/github/go-ap/activitypub.svg)](https://codecov.io/gh/go-ap/activitypub)
[![Go Report Card](https://goreportcard.com/badge/github.com/go-ap/activitypub)](https://goreportcard.com/report/github.com/go-ap/activitypub)
2017-09-11 21:33:19 +00:00
2017-09-11 20:56:00 +00:00
Basic lib for using [activity pub](https://www.w3.org/TR/activitypub/#Overview) API in Go.
2019-12-04 18:34:41 +00:00
It contains types for most of the ActivityStreams vocabulary and the ActivityPub extension.
They are documented accordingly with annotations from the specification.
## Usage
```go
2019-01-22 15:56:15 +00:00
import "github.com/go-ap/activitypub"
```