diff --git a/.gitignore b/.gitignore index c33027e..6a4aa4d 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ behavioural/chain_of_responsibility/design_pattern_chain_of_responsibility behavioural/strategy/design_pattern_strategy behavioural/observer/design_pattern_observer behavioural/state/design_pattern_state +behavioural/command/design_pattern_command diff --git a/behavioural/command/go.mod b/behavioural/command/go.mod new file mode 100644 index 0000000..77bac87 --- /dev/null +++ b/behavioural/command/go.mod @@ -0,0 +1,3 @@ +module design_pattern_command + +go 1.25.4 diff --git a/behavioural/command/main.go b/behavioural/command/main.go new file mode 100644 index 0000000..78b753e --- /dev/null +++ b/behavioural/command/main.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("=== Command Design Pattern ===") +}