Files
Sean Chittenden c268e938ee Add PostgreSQL function consul_kv_get()
Add a set returning function that fetches a particular key.  It can be called like:

  SELECT * FROM consul_kv_get('foo-key');
  SELECT * FROM consul_kv_get(key := 'test/', recurse := TRUE);
2015-11-30 14:40:20 -08:00

10 lines
175 B
C++

#ifndef CONSUL_HPP
#define CONSUL_HPP
#include "consul/agent.hpp"
#include "consul/kv_pairs.hpp"
#include "consul/peer.hpp"
#include "consul/peers.hpp"
#endif // CONSUL_HPP