# Functions
Execute runs state modifying handlers of the contract given msg data.
Instantiate does nothing.
Migrate executes queue contract's migration which consists in clearing the state and writing three new values in the queue.
Query handles given message bytes what query handler must be executed.
# Constants
FirstKey defines the value of the default key, when no key is set in the contract so far.
# Structs
CountResponse is the total number of Item in the queue.
Dequeue is the message used to remove an Item from the queue.
Enqueue is the message used to add an Item to the queue.
ExecuteMsg defines all the messages that modify state that can be sent to the contract.
InstantiateMsg is the instantiation messages.
Item defines the state object of the queue values.
ListResponse is the response returned by the List query.
QueryMsg defines all the set of the possible queries that can be sent to the contract.
No description provided by the author
SumResponse is the total sum of Item in the queue values.