blob: 6ddd2ea05d78c98a5a1d8f47a74f0a074d14481c [file] [log] [blame]
// Copyright 2021 The Fuchsia 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 checklicenses
type Project struct {
Name string
Root string
LicenseFiles []string
LicenseFileMatches []*Match
}
func NewProjectFromReadme() *Project {
return &Project{}
}
func NewProjectFromCustomEntry() *Project {
return &Project{}
}
func NewProjectFromLicenseFile() *Project {
return &Project{}
}