Ajout d'un mutex pour pouvoir mettre à jour via une goroutine la liste des messages
This commit is contained in:
20
blog.go
20
blog.go
@@ -1,18 +1,24 @@
|
||||
package main
|
||||
|
||||
import "html/template"
|
||||
import (
|
||||
"html/template"
|
||||
"sync"
|
||||
)
|
||||
|
||||
type Post struct {
|
||||
Id string
|
||||
Title string
|
||||
Author string
|
||||
Date string
|
||||
HTML template.HTML
|
||||
Text string
|
||||
BlogTitle string
|
||||
Lang string
|
||||
Id string
|
||||
Title string
|
||||
Author string
|
||||
Date string
|
||||
HTML template.HTML
|
||||
Text string
|
||||
}
|
||||
|
||||
type Blog struct {
|
||||
Title string
|
||||
Lang string
|
||||
Posts []Post
|
||||
mutex sync.Mutex
|
||||
}
|
||||
|
Reference in New Issue
Block a user