Skip to content

Instantly share code, notes, and snippets.

@mortymacs
Created August 18, 2024 09:09
Show Gist options
  • Save mortymacs/177f155d00fc1b40ab52b437ff600423 to your computer and use it in GitHub Desktop.
Save mortymacs/177f155d00fc1b40ab52b437ff600423 to your computer and use it in GitHub Desktop.
Go decorator pattern
// You can edit this code!
// Click here and start typing.
package main
import "fmt"
type IFeature interface {
GetPrice() int
}
type BasicMaintenance struct{}
func (BasicMaintenance) GetPrice() int {
featureCost := 5
return featureCost
}
type EmailFeature struct {
BaseFeature IFeature
}
func (e *EmailFeature) GetPrice() int {
featureCost := 10
if e.BaseFeature != nil {
return e.BaseFeature.GetPrice() + featureCost
}
return featureCost
}
type ChatFeature struct {
BaseFeature IFeature
}
func (c *ChatFeature) GetPrice() int {
featureCost := 5
if c.BaseFeature != nil {
return c.BaseFeature.GetPrice() + featureCost
}
return featureCost
}
type CalendarFeature struct {
BaseFeature IFeature
}
func (c *CalendarFeature) GetPrice() int {
featureCost := 15
if c.BaseFeature != nil {
return c.BaseFeature.GetPrice() + featureCost
}
return featureCost
}
func main() {
f := CalendarFeature{
BaseFeature: &EmailFeature{
BaseFeature: &BasicMaintenance{},
},
}
fmt.Println("Total price:", f.GetPrice())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment