* fx image build, build a function into a image which a API service handle with function * fx image export, export service into a directory, for easy debug, we can just go the directory to do everything with Docker cli
7 lines
143 B
PHP
Vendored
7 lines
143 B
PHP
Vendored
<?php
|
|
include("fx.php");
|
|
$data = file_get_contents("php://input");
|
|
$res = json_decode($data,true);
|
|
$v = Fx($res);
|
|
echo $v;
|