Skip to content

Commit 71aeb17

Browse files
committed
Add UserRepository.java
1 parent afbbd88 commit 71aeb17

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package spring.oldboy.repository;
2+
3+
import org.springframework.stereotype.Repository;
4+
import spring.oldboy.pool.StarterConnectionPool;
5+
6+
@Repository
7+
public class UserRepository {
8+
9+
private final StarterConnectionPool connectionPool;
10+
11+
public UserRepository(StarterConnectionPool connectionPool) {
12+
this.connectionPool = connectionPool;
13+
}
14+
}

0 commit comments

Comments
 (0)