Skip to content

Commit

Permalink
remove -library suffix from name
Browse files Browse the repository at this point in the history
  • Loading branch information
vilaug committed Aug 1, 2022
1 parent 97ec944 commit 409d2d7
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# go-fhir-library
# go-fhir
Go FHIR library currently includes a STU3 FHIR library and a generator used to generate it. The original generator can be found here [golang-fhir-models](https://github.com/samply/golang-fhir-models)

# STU3 FHIR library
Expand Down
2 changes: 1 addition & 1 deletion generator/cmd/generate_elements.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

"github.com/dave/jennifer/jen"
"github.com/ivido/go-fhir-library/generator/fhir"
"github.com/ivido/go-fhir/generator/fhir"
)

func generateElements(alreadyGeneratedTypes, typesToGenerate map[string]bool) error {
Expand Down
2 changes: 1 addition & 1 deletion generator/cmd/generate_fields.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"unicode"

"github.com/dave/jennifer/jen"
"github.com/ivido/go-fhir-library/generator/fhir"
"github.com/ivido/go-fhir/generator/fhir"
)

type FieldType int
Expand Down
2 changes: 1 addition & 1 deletion generator/cmd/generate_resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"

"github.com/dave/jennifer/jen"
"github.com/ivido/go-fhir-library/generator/fhir"
"github.com/ivido/go-fhir/generator/fhir"
)

func generateResources() {
Expand Down
2 changes: 1 addition & 1 deletion generator/cmd/generate_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

"github.com/dave/jennifer/jen"
"github.com/ivido/go-fhir-library/generator/fhir"
"github.com/ivido/go-fhir/generator/fhir"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion generator/cmd/generate_valueSets.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"

"github.com/dave/jennifer/jen"
"github.com/ivido/go-fhir-library/generator/fhir"
"github.com/ivido/go-fhir/generator/fhir"
)

func generateValueSets() {
Expand Down
2 changes: 1 addition & 1 deletion generator/cmd/read_sources.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"strings"

"github.com/ivido/go-fhir-library/generator/fhir"
"github.com/ivido/go-fhir/generator/fhir"
)

func readSourcesToContext(dir string) {
Expand Down
2 changes: 1 addition & 1 deletion generator/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/ivido/go-fhir-library/generator
module github.com/ivido/go-fhir/generator

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion generator/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "github.com/ivido/go-fhir-library/generator/cmd"
import "github.com/ivido/go-fhir/generator/cmd"

func main() {
cmd.Execute()
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/ivido/go-fhir-library
module github.com/ivido/go-fhir

go 1.18

0 comments on commit 409d2d7

Please sign in to comment.