work on gobgp

This commit is contained in:
Eishun Kondoh 2018-10-12 11:09:46 +09:00
parent b9f353809d
commit c3e8b06615
12 changed files with 140 additions and 77 deletions

View file

@ -0,0 +1,8 @@
defmodule EvpnRouter.GoBGP.NativeUtils do
use Rustler, otp_app: :evpn_router, crate: :evpn_router
@spec get_route_family(String.t()) :: {:ok, non_neg_integer()}
def get_route_family(_p0) do
{:error, :nif_error}
end
end