Skip to content

Commit bde04ca

Browse files
committed
Fix README.md
1 parent e8cd95b commit bde04ca

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
FROM alpine:3.16
22

33
MAINTAINER Konstantin Makarov <hippik80@gmail.com>
4-
RUN adduser -D developer
4+
RUN adduser -D dev
55
WORKDIR /app
66
COPY wal-listener .
7-
USER developer
7+
USER dev
88

99
ENTRYPOINT ["./wal-listener"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ Service publishes the following structure.
2828
The name of the topic for subscription to receive messages is formed from the prefix of the topic,
2929
the name of the database and the name of the table `prefix + schema_table`.
3030

31-
```
31+
```go
3232
{
3333
ID uuid.UUID # unique ID
3434
Schema string
3535
Table string
3636
Action string
37-
Data map[string]interface{}
37+
Data map[string]any
3838
EventTime time.Time # commit time
3939
}
4040
```

0 commit comments

Comments
 (0)