Skip to content

Commit

Permalink
re-add nucleodb bean
Browse files Browse the repository at this point in the history
  • Loading branch information
firestar committed Dec 13, 2024
1 parent 6f50be4 commit 438b845
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/main/java/com/nucleodb/spring/config/NDBInstance.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.nucleodb.spring.config;

import com.nucleodb.library.NucleoDB;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class NDBInstance {
@Bean
public NucleoDB createNucleoDB(){
return new NucleoDB();
}
}

0 comments on commit 438b845

Please sign in to comment.