-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change FHIR::Definitions to FHIR::R4:Definitions
- Loading branch information
Yunwei Wang
committed
Aug 28, 2024
1 parent
b4b7555
commit 51e44a5
Showing
1 changed file
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
module FHIR | ||
class Definitions | ||
include CommonDefinitions | ||
@ig_file_name = File.join(Dir.pwd, 'lib', 'fhir_models', 'igs', 'hl7.fhir.r4.core.tgz') | ||
module R4 | ||
class Definitions | ||
include CommonDefinitions | ||
@ig_file_name = File.join(Dir.pwd, 'lib', 'fhir_models', 'igs', 'hl7.fhir.r4.core.tgz') | ||
|
||
load_igs(@ig_file_name) | ||
load_igs(@ig_file_name) | ||
|
||
def self.module_version_name | ||
'R4' | ||
end | ||
def self.module_version_name | ||
'R4' | ||
end | ||
|
||
def self.module_version | ||
FHIR::R4 | ||
def self.module_version | ||
FHIR::R4 | ||
end | ||
end | ||
end | ||
|
||
Definitions = FHIR::R4::Definitions | ||
end |