blob: 34805f7bb5ef201d3c49a342811f59fe93de135c [file] [log] [blame]
// Copyright 2021 The Chromium OS 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 recovery
import (
"infra/cros/recovery/internal/localtlw"
"infra/cros/recovery/tlw"
)
// NewLocalTLWAccess provides instance of local implementation of TLW Access.
func NewLocalTLWAccess(ufs localtlw.UFSClient, csac localtlw.CSAClient, sshKeyPaths []string) (tlw.Access, error) {
return localtlw.New(ufs, csac, sshKeyPaths)
}