blob: a8cd0b433f430ed45b0b64177276788070dbb946 [file] [log] [blame] [edit]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package recovery
import (
"context"
"go.chromium.org/infra/cros/recovery/internal/localtlw"
"go.chromium.org/infra/cros/recovery/tlw"
)
// NewLocalTLWAccess provides instance of local implementation of TLW Access.
func NewLocalTLWAccess(ctx context.Context, ufs localtlw.UFSClient) (tlw.Access, error) {
return localtlw.New(ctx, ufs)
}