Files
repmgr/repmgr-client.c
2017-04-18 11:26:51 +09:00

22 lines
354 B
C

/*
* repmgr.c - Command interpreter for the repmgr package
*
* Copyright (c) 2ndQuadrant, 2010-2017
*
* This module is a command-line utility to easily setup a cluster of
* hot standby servers for an HA environment
*
*/
#include <stdio.h>
#include <stdlib.h>
#include "repmgr.h"
int
main(int argc, char **argv)
{
puts("repmgr");
return 0;
}