about summary refs log tree commit diff
path: root/third_party/nix/src/nix-daemon/nix-daemon-proto.hh
blob: 5ffab9ebbe62b3fa52872b41ed8240ff1cfb0bcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <memory>

#include "libproto/worker.grpc.pb.h"
#include "libstore/store-api.hh"

namespace nix::daemon {

std::unique_ptr<nix::proto::WorkerService::Service> NewWorkerService(
    nix::Store*);

}  // namespace nix::daemon