https://github.com/berquerant/marker
Generator of methods to implement marker interfaces.
https://github.com/berquerant/marker
go
Last synced: 12 months ago
JSON representation
Generator of methods to implement marker interfaces.
- Host: GitHub
- URL: https://github.com/berquerant/marker
- Owner: berquerant
- License: mit
- Created: 2021-09-18T10:09:55.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-06-15T05:30:50.000Z (about 1 year ago)
- Last Synced: 2025-06-15T06:26:49.632Z (about 1 year ago)
- Topics: go
- Language: Go
- Homepage:
- Size: 96.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# marker
Given
```go
package example
type Kern struct {}
```
run `marker -type Kern -method IsKern` then generate
```go
package example
func (*Kern) IsKern() {}
```
in kern_marker.go in the same directory.