英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论