Packages
dynamo_datamapper
0.1.0
Library for manipulating data from dynamo db, this library its similar to odm from mongo, but to manipulate data easiest, based in Aws Dynamo library.
Current section
Files
Jump to
Current section
Files
lib/data_mapper.ex
defmodule DataMapper do
'''
def start(_type, _args) do
IO.puts "datamapper starting"
params = %{
username: "alexbilbie",
profile: "Developer",
twoFactorEnabled: true,
name: "Alex Bilbie"
}
IO.inspect Query.get_struct(pid)
IO.inspect Query.get(pid, "bz_administrators")
Task.start(fn -> :timer.sleep(1000); IO.puts("done sleeping") end)
end
'''
end