fix header import

This commit is contained in:
MatthieuCoder 2023-01-16 17:59:38 +04:00
parent cceb597c45
commit 4ed0e734e1
3 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,6 @@
FROM rust AS chef FROM rust AS chef
USER root USER root
COPY .cargo .cargo
RUN cargo install cargo-chef RUN cargo install cargo-chef
RUN apt-get update && apt-get install -y protobuf-compiler RUN apt-get update && apt-get install -y protobuf-compiler
WORKDIR /app WORKDIR /app

View file

@ -1 +0,0 @@
all-in-one.h

View file

@ -2,7 +2,7 @@ package allinone
/* /*
#cgo LDFLAGS: -L../../../build/lib -lall_in_one -lz -lm #cgo LDFLAGS: -L../../../build/lib -lall_in_one -lz -lm
#include "./all-in-one.h" #include "./all_in_one.h"
#include "./error_handler.h" #include "./error_handler.h"
*/ */
import "C" import "C"