Skip to content

Instantly share code, notes, and snippets.

@elbrujohalcon
Created October 7, 2017 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elbrujohalcon/d3c11591ca5edde506c3bcb90ca73648 to your computer and use it in GitHub Desktop.
Save elbrujohalcon/d3c11591ca5edde506c3bcb90ca73648 to your computer and use it in GitHub Desktop.
Examples for my Blog
-module(kvs).
-behavior(gen_server).
-include_lib("mixer/include/mixer.hrl").
-mixin([{ base_server
, [ handle_info/2
]
}]).
-export([start/0, store/2, retrieve/1]).
-export([init/1, handle_call/3, handle_cast/2]).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment