1#!/usr/bin/env python3 2# Owner(s): ["oncall: distributed"] 3 4# Copyright (c) Facebook, Inc. and its affiliates. 5# All rights reserved. 6# 7# This source code is licensed under the BSD-style license found in the 8# LICENSE file in the root directory of this source tree. 9 10 11def main(): 12 print("Success, smoke test") 13 14 15if __name__ == "__main__": 16 main() 17