summaryrefslogtreecommitdiff
path: root/fetch-negotiator.c
blob: 2675d120feee21dd9f618ce2f6b8ff1e3a3330ea (plain)
1
2
3
4
5
6
7
8
#include "git-compat-util.h"
#include "fetch-negotiator.h"
#include "negotiator/default.h"

void fetch_negotiator_init(struct fetch_negotiator *negotiator)
{
	default_negotiator_init(negotiator);
}