SFSObject

Encode/decode SFSObjects in Elixir. See http://www.smartfoxserver.com/

:construction: :warning: This project is in very stage. Things will change!

Usage

original = SFSObject.new
  |> SFSObject.put_string("some key", "hello world")
  |> SFSObject.put_int("meaning_of_life", 42)
binary = SFSObject.encode(object)
^original = SFSObject.decode(binary)

Tests

$ mix deps.get
$ mix test.watch

Release