- adds static lib to share functions between daemon and libs
[apps/native/tizen-things-daemon.git] / lib / things-service / src / things-service.c
1 /*
2  * Copyright (c) 2017 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Flora License, Version 1.1 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://floralicense.org/license/
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <sys/types.h>
18 #include <unistd.h>
19 #include <time.h>
20 #include <glib.h>
21 #include <gio/gio.h>
22 #include <gio/gunixsocketaddress.h>
23 #include <app_common.h>
24 #include "log-private.h"
25 #include "things-service.h"
26 #include "common-app-inf.h"
27
28 struct _ts_data {
29         int padding;
30 };
31
32 int things_service_init(ts_handle *handle)
33 {
34         return 0;
35 }
36
37 int things_service_fini(ts_handle handle)
38 {
39         return 0;
40 }
41
42 int things_service_send_data(ts_handle handle, const char *json_data)
43 {
44         return 0;
45 }