Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
flipgthb committed Dec 17, 2023
1 parent 5163825 commit c244225
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 4 deletions.
12 changes: 11 additions & 1 deletion Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

julia_version = "1.9.3"
manifest_format = "2.0"
project_hash = "a11ebb6caafde5f3a8467bc297dda9fe2be1e4cd"
project_hash = "99023c2d141b679e88bc63f6dd6aaf320c511e9a"

[[deps.ArgTools]]
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"
Expand All @@ -14,6 +14,11 @@ uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
[[deps.Base64]]
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"

[[deps.DataPrep]]
path = "src/DataPrep"
uuid = "d40174be-394b-476a-94dd-cdf19e683a9d"
version = "0.1.0"

[[deps.Dates]]
deps = ["Printf"]
uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand All @@ -38,6 +43,11 @@ version = "1.16.1"
[[deps.FileWatching]]
uuid = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee"

[[deps.GBPAlgorithm]]
path = "src/GBPAlgorithm"
uuid = "52f5dfbb-b0c2-49ff-99e4-0d4f43f103e5"
version = "0.1.0"

[[deps.InteractiveUtils]]
deps = ["Markdown"]
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
Expand Down
10 changes: 7 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name = "GBPQAMDecoder"
authors = ["Felippe Alves"]
[compat]
julia = "1.9.3"
DrWatson = "2.13.0"

[deps]
DataPrep = "d40174be-394b-476a-94dd-cdf19e683a9d"
DrWatson = "634d3b9d-ee7a-5ddf-bec9-22491ea816e1"
GBPAlgorithm = "52f5dfbb-b0c2-49ff-99e4-0d4f43f103e5"

[compat]
DrWatson = "2.13.0"
julia = "1.9.3"
4 changes: 4 additions & 0 deletions src/DataPrep/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
name = "DataPrep"
uuid = "d40174be-394b-476a-94dd-cdf19e683a9d"
authors = ["Felippe Alves <[email protected]>"]
version = "0.1.0"
5 changes: 5 additions & 0 deletions src/DataPrep/src/DataPrep.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module DataPrep

greet() = print("Hello World!")

end # module DataPrep
4 changes: 4 additions & 0 deletions src/GBPAlgorithm/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
name = "GBPAlgorithm"
uuid = "52f5dfbb-b0c2-49ff-99e4-0d4f43f103e5"
authors = ["Felippe Alves <[email protected]>"]
version = "0.1.0"
5 changes: 5 additions & 0 deletions src/GBPAlgorithm/src/GBPAlgorithm.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module GBPAlgorithm

greet() = print("Hello World!")

end # module GBPAlgorithm

0 comments on commit c244225

Please sign in to comment.