blob: 69d3a86076a4c6b64b245416de684435fab18a4e [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package test_service
import "time"
type NativeTest interface {
PassTime(t time.Time) (time.Time | error)
PassError(e error) error
}