mo35 commited on
Commit
8d0c3d7
·
verified ·
1 Parent(s): 2137240

Upload server/__init__.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. server/__init__.py +11 -0
server/__init__.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+ # All rights reserved.
3
+ #
4
+ # This source code is licensed under the BSD-style license found in the
5
+ # LICENSE file in the root directory of this source tree.
6
+
7
+ """Code Refactor Gym environment server components."""
8
+
9
+ from .code_refactor_gym_environment import CodeRefactorGymEnvironment
10
+
11
+ __all__ = ["CodeRefactorGymEnvironment"]