From 32ce1bd23970ebd3f10b7d0fc719fedfb2bf3058 Mon Sep 17 00:00:00 2001 From: Jake Taylor <jake@elixxir.io> Date: Mon, 20 Jun 2022 17:13:26 -0500 Subject: [PATCH] bindings --- bindings/e2e.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bindings/e2e.go b/bindings/e2e.go index 412896fd2..0464469c5 100644 --- a/bindings/e2e.go +++ b/bindings/e2e.go @@ -31,6 +31,10 @@ type E2e struct { id int } +func (e *E2e) GetID() int { + return e.id +} + // Login creates and returns a new E2e object and adds it to the e2eTrackerSingleton // identity should be created via MakeIdentity() and passed in here // If callbacks is left nil, a default auth.Callbacks will be used -- GitLab