blob: 379cd068bded3a1b55ee33c22d0c868d516f87ae [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 (
"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(ufs localtlw.UFSClient) (tlw.Access, error) {
return localtlw.New(ufs)
}