Skip to content

Commit

Permalink
Add missing slug
Browse files Browse the repository at this point in the history
  • Loading branch information
cesalberca committed Aug 22, 2024
1 parent 87314d0 commit 5ea036b
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/app/blog/(posts)/use-cases-and-commands/page.mdx
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import MdxLayout from '../../mdx-layout'

export const metadata = {
title: "Use Cases and Command Pattern",
date: "2019-04-17",
locale: "en",
title: 'Use Cases and Command Pattern',
slug: 'use-cases-and-commands',
date: '2019-04-17',
locale: 'en',
readTime: 7,
image: "abstract-dark-design.jpg",
summary: "Use cases are the heart of our application, they are the actions that our users can perform. The command pattern helps us encapsulate requests."
image: 'abstract-dark-design.jpg',
summary:
'Use cases are the heart of our application, they are the actions that our users can perform. The command pattern helps us encapsulate requests.',
}

The [command pattern](https://sourcemaking.com/design_patterns/command) helps us encapsulate requests in order to perform certain operations, like logging, queuing and filtering.
Expand Down

0 comments on commit 5ea036b

Please sign in to comment.