Cross-language definitions for standard LBRY types
Go to file
2019-01-25 11:17:31 -05:00
cpp Add C++ protobuf generated code 2018-10-01 23:27:10 +05:30
go add go, js, python 2017-12-14 14:39:53 -05:00
js add go, js, python 2017-12-14 14:39:53 -05:00
proto first attempt at converting to proto3 and some housekeeping 2019-01-25 11:17:31 -05:00
python add go, js, python 2017-12-14 14:39:53 -05:00
.gitignore gitignore 2017-12-15 10:23:37 -05:00
build.sh mkdir 2018-10-01 14:02:06 -04:00
README.md gitignore 2017-12-15 10:23:37 -05:00

LBRY Types

Cross-language definitions for standard LBRY types.

Using LBRY types in your code

Go

package main

import pb "github.com/lbryio/types/go"
import "fmt"

func main() {
    title := "Coherence"
    metadata := pb.Metadata{Title:&title}
    fmt.Printf("Let's watch %s on LBRY!\n", metadata.GetTitle())
}

Python

todo

Javascript

todo

Compiling types

You only need to do this if you're modifying the types themselves.

  • Download the protoc binary and put it in your path. Make sure you get the one starting with protoc, not protobuf.
  • ./build.sh

License

MIT