-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
140 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Package toml provides stubs for github.com/BurntSushi/toml. | ||
package toml | ||
|
||
import ( | ||
"io" | ||
"io/fs" | ||
) | ||
|
||
func Unmarshal(_ []byte, _ any) error { return nil } | ||
|
||
type MetaData struct{} | ||
|
||
func Decode(_ string, _ any) (MetaData, error) { return MetaData{}, nil } | ||
func DecodeFS(_ fs.FS, _ string, _ any) (MetaData, error) { return MetaData{}, nil } | ||
func DecodeFile(_ string, _ any) (MetaData, error) { return MetaData{}, nil } | ||
|
||
type Encoder struct{} | ||
|
||
func NewEncoder(_ io.Writer) *Encoder { return nil } | ||
func (*Encoder) Encode(_ any) error { return nil } | ||
|
||
type Decoder struct{} | ||
|
||
func NewDecoder(_ io.Reader) *Decoder { return nil } | ||
func (*Decoder) Decode(_ any) error { return nil } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters