mirror of
https://github.com/foomo/posh.git
synced 2025-10-16 12:45:38 +00:00
12 lines
106 B
Go
12 lines
106 B
Go
package scaffold
|
|
|
|
import (
|
|
"io/fs"
|
|
)
|
|
|
|
type Directory struct {
|
|
Source fs.FS
|
|
Target string
|
|
Data any
|
|
}
|