postmoogle/vendor/github.com/etkecc/go-linkpearl
2024-10-14 19:47:05 +03:00
..
.gitignore migrate to github 2024-08-20 22:56:56 +03:00
.golangci.yml update deps; restructure 2024-10-14 19:47:05 +03:00
accountdata.go migrate to github 2024-08-20 22:56:56 +03:00
config.go migrate to github 2024-08-20 22:56:56 +03:00
crypter.go migrate to github 2024-08-20 22:56:56 +03:00
events.go migrate to github 2024-08-20 22:56:56 +03:00
justfile migrate to github 2024-08-20 22:56:56 +03:00
LICENSE migrate to github 2024-08-20 22:56:56 +03:00
linkpearl.go migrate to github 2024-08-20 22:56:56 +03:00
reactions.go migrate to github 2024-08-20 22:56:56 +03:00
README.md migrate to github 2024-08-20 22:56:56 +03:00
send.go migrate to github 2024-08-20 22:56:56 +03:00
sync.go migrate to github 2024-08-20 22:56:56 +03:00
utils.go migrate to github 2024-08-20 22:56:56 +03:00

linkpearl

more about that name

A wrapper around mautrix-go with infrastructure/glue code included

How to get

go get github.com/etkecc/go-linkpearl
lp, err := linkpearl.New(&linkpearl.Config{
	// your options here
})
if err != nil {
	panic(err)
}

go lp.Start()

TODO

  • Unit tests

Features

  • Zero configuration End-to-End encryption
  • Zero configuration persistent storage
  • Zero configuration session restores
  • Zero configuration room and user account data encryption with AES GCM (both keys and values)
  • Zero configuration room and user account data caching
  • Threads support
  • All wrapped components exported