7 lines
111 B
Python
7 lines
111 B
Python
from ctypes import cdll
|
|
|
|
lib = cdll.LoadLibrary("target/release/libembed.dylib")
|
|
|
|
lib.process()
|
|
|
|
print("done!") |