aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/src/server.h
blob: e26fe7ccac85754d68dee7bdcdf0124f10c4d40f (plain) (tree)
1
2
3
4
5
6
7
  
                                                    




                                                          




                         

                                

  
              
 
                                                             


                                     
 
      
/*
 * Copyright (c) 2022 Egor Tensin <egor@tensin.name>
 * This file is part of the "cimple" project.
 * For details, see https://github.com/egor-tensin/cimple.
 * Distributed under the MIT License.
 */

#ifndef __SERVER_H__
#define __SERVER_H__

struct settings {
	const char *port;

	const char *sqlite_path;
};

struct server;

int server_create(struct server **, const struct settings *);
void server_destroy(struct server *);

int server_main(struct server *);

#endif