Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package main
import "fmt"
// Entity
type User struct {
ID int
Name string
}
// Repository Interface
type UserRepository interface {
GetByID(id int) User
}
// Database Implementation
type SQLRepository struct{}
func (r SQLRepository) GetByID(id int) User {
return User{ID: id, Name: "Alice"}
}
// Mock Implementation
type MockRepository struct{}
func (r MockRepository) GetByID(id int) User {
return User{ID: id, Name: "Test User"}
}
// Business Logic
type UserService struct {
repo UserRepository
}
func (s UserService) GetUser(id int) User {
return s.repo.GetByID(id)
}
func main() {
service := UserService{repo: SQLRepository{}}
fmt.Println(service.GetUser(1))
}Coding works best on desktop or with an external keyboard.