在Golang中使用HL7-FHIR标准

huangapple go评论101阅读模式
英文:

Use HL7-FHIR standard in Golang

问题

有没有适合在Golang中使用FHIR标准的包?应该有一个对Google Cloud的小依赖。

英文:

Is there a suitable package to be able to use the FHIR standard in Golang? There should be a small dependency on the Google Cloud.

答案1

得分: 1

在Golang中使用FHIR的一种方法是使用FHIR Protocol Buffers实现:https://github.com/google/fhir

这包括一个用于将JSON解析/序列化为protobuf的Golang解析器/序列化器,它将为您提供特定于语言的数据结构。它不包括用于FHIR REST API的库,但您可以使用标准的http库来实现。

英文:

One way of using FHIR in Golang is the FHIR Protocol Buffers implementation: https://github.com/google/fhir

This includes a Golang parser/serializer for JSON to protobuf, which will get you language-specific data structures. It doesn't include a library for the FHIR REST API but you can use standard http libraries for that.

huangapple
  • 本文由 发表于 2021年7月9日 20:10:35
  • 转载请务必保留本文链接:https://go.coder-hub.com/68316546.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定