Introduce the entities that will be collected and sent

This commit is contained in:
Joseph Yiasemides 2018-05-08 18:07:59 +02:00
parent 2014e85777
commit 26b669f9ea
4 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,6 @@
defmodule POAAgent.Entity.Ethereum.Block do
@type t :: %__MODULE__{
}
defstruct [
]
end

View File

@ -0,0 +1,3 @@
defmodule POAAgent.Entity.Ethereum.History do
@type t :: [POAAgent.Entity.Ethereum.Block.t]
end

View File

@ -0,0 +1,6 @@
defmodule POAAgent.Entity.Ethereum.Statistics do
@type t :: %__MODULE__{
}
defstruct [
]
end

View File

@ -0,0 +1,6 @@
defmodule POAAgent.Entity.Host.Information do
@type t :: %__MODULE__{
}
defstruct [
]
end