No description
Find a file
Bas Kloosterman de85494b51 Added readme
2023-06-08 16:53:43 +02:00
protobuf update golang package casing 2023-06-01 09:32:11 +02:00
go.mod update golang package casing 2023-06-01 09:32:11 +02:00
okapi-errors.pb.go v0.0.3 2023-05-30 09:45:14 +02:00
okapi-events.pb.go v0.0.3 2023-05-30 09:45:14 +02:00
okapi-onboarding.pb.go v0.0.3 2023-05-30 09:45:14 +02:00
okapi-patient-registration.pb.go v0.0.3 2023-05-30 09:45:14 +02:00
okapi-service-config.pb.go v0.0.3 2023-05-30 09:45:14 +02:00
okapi.pb.go v0.0.3 2023-05-30 09:45:14 +02:00
okapi_grpc.pb.go v0.0.3 2023-05-30 09:45:14 +02:00
readme.md Added readme 2023-06-08 16:53:43 +02:00

OKAPI

This repository contains the protobuf specification and accompanying go module for the OKAPI standard. Read the OKAPI specification for more information.

Compile protobufs into go package on macos

Compiling the protobuf files yourself is not necessary but here are instructions as how one should compile it if needed (MacOs).

$ brew install protoc protoc-gen-go protoc-gen-go-grpc
$ cd protobuf
$ protoc --go_out=.. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative okapi-errors.proto okapi-onboarding.proto okapi-service-config.proto okapi-events.proto okapi-patient-registration.proto okapi.proto